# File lib/cgikit.rb, line 1097
 def run
		@attr_action   = fetch( 'action', false ) # CKComponent
		@attr_disabled = fetch( 'disabled' )      # true or false
		@attr_href     = fetch( 'href' )          # String
		@attr_page     = fetch( 'page' )          # String
		@attr_string   = fetch( 'string' )        # String
		@attr_target   = fetch( 'target' )        # String
		@attr_secure   = fetch( 'secure' )        # true or false
		@attr_query    = fetch( 'query' )         # Hash

		if application.attributes_check
			check_undefined_attributes( 'action', 'disabled', 'href', \
				'page', 'string', 'target', 'secure', 'query' )
			check_required_attributes( ['action'], ['href'], ['page'] )
		end
	end