Name of the action to dispatch. The action is usually a method of the controller. This is the raw name, such as it would be extracted from the URI. It is the responsibility of the dispatcher to format it.
Zend_Controller_Dispatcher_Token object wrapping this controller/action call.
Name of the controller to dispatch. This is the raw name, such as it would be extracted from the URI. It is the responsibility of the dispatcher to format it.
Array of key/value pairs to pass as parameters to the controller.
Forward to another controller/action.
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.
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.
Class constructor. A Zend_Controller_Dispatcher_Token object must be built with a controller name and an action, but parameters are optional.
Directory where Zend_Controller_Action files are stored.
If $performDispatch is FALSE, this method will check if a controller file exists. This still doesn't necessarily mean that it can be dispatched in the stricted sense, as file may not contain the controller class or the controller may reject the action.
Formats a string from a URI into a PHP-friendly name. Replaces words separated by "-", "_", or "." with camelCaps and removes any characters that are not alphanumeric.
Array of instance of objects implementing Zend_Controller_Plugin_Interface