Located in /library/Zend/Controller/Action.php (line 30)
Zend_Controller_Dispatcher_Token object wrapping this controller/action call.
Class constructor
Any controller extending Zend_Controller_Action must provide an index() method. The index() method is the default action for the controller when no action is specified.
This only handles a controller which has been called with no action specified in the URI.
For handling nonexistant actions in controllers (bad action part of URI), the controller class must provide a __call() method or an exception will be thrown.
Initialize the class instance variables and then call the action.
Forward to another controller/action.
It is important to supply the unformatted names, i.e. "article" rather than "ArticleController". The dispatcher will do the appropriate formatting when the Zend_Controller_Dispatcher_Token item is received.
Return all parameters that were passed to the controller as an associative array.
Gets a parameter that was passed to this controller. If the parameter does not exist, FALSE will be return.
If the parameter does not exist and $default is set, then $default will be returned instead of FALSE.
Redirect to another URL
Proxy for undefined methods. Default behavior is to throw an exception on undefined methods, however this function can be overrided to implement magic (dynamic) actions.
Documentation generated on Wed, 08 Mar 2006 04:51:01 -0800 by phpDocumentor 1.3.0RC4