| // | Bertrand Mansion | // +----------------------------------------------------------------------+ // // $Id: Action.php 6184 2005-09-07 10:08:17Z bmol $ /** * Class representing an action to perform on HTTP request. The Controller * will select the appropriate Action to call on the request and call its * perform() method. The subclasses of this class should implement all the * necessary business logic. * * @author Alexey Borzov * @package HTML_QuickForm_Controller * @version $Revision: 6184 $ */ class HTML_QuickForm_Action { /** * Processes the request. This method should be overriden by child classes to * provide the necessary logic. * * @access public * @param object HTML_QuickForm_Page the current form-page * @param string Current action name, as one Action object can serve multiple actions */ function perform(&$page, $actionName) { } } ?>