# File lib/cgikit.rb, line 1011
 def run
		@attr_name  = fetch( 'name' )  # String
		@attr_page  = fetch( 'page' )  # String
		@attr_src   = fetch( 'src' )   # String
		@attr_value = fetch( 'value' ) # CKComponent

		if application.attributes_check
			check_undefined_attributes( 'name', 'page', 'src', 'value' )
			check_required_attributes( ['page'], ['src'], ['value'] )
		end
	end