extends abstract class Phalcon\Dispatcher
implements Phalcon\Events\EventsAwareInterface, Phalcon\Di\InjectionAwareInterface, Phalcon\DispatcherInterface, Phalcon\Cli\DispatcherInterface
Dispatching is the process of taking the command-line arguments, extracting the module name, task name, action name, and optional parameters contained in it, and then instantiating a task and calling an action on it.
$di = new \Phalcon\Di(); $dispatcher = new \Phalcon\Cli\Dispatcher(); $dispatcher->setDi(di); $dispatcher->setTaskName('posts'); $dispatcher->setActionName('index'); $dispatcher->setParams(array()); $handle = dispatcher->dispatch();
Sets the default task suffix
Sets the default task name
Sets the task name to be dispatched
Gets last dispatched task name
Throws an internal exception
Handles a user exception
Returns the lastest dispatched controller
Returns the active task in the dispatcher
Set the options to be dispatched
Get dispatched options
...
Sets the dependency injector
Returns the internal dependency injector
Sets the events manager
Returns the internal event manager
Sets the default action suffix
Gets the default action suffix
Sets the module where the controller is (only informative)
Gets the module where the controller class is
Sets the namespace where the controller class is
Gets a namespace to be prepended to the current handler name
Sets the default namespace
Returns the default namespace
Sets the default action name
Sets the action name to be dispatched
Gets the latest dispatched action name
Sets action params to be dispatched
Gets action params
Set a param by its name or numeric index
Gets a param by its name or numeric index
Check if a param exists
Returns the current method to be/executed in the dispatcher
Checks if the dispatch loop is finished or has more pendent controllers/tasks to dispatch
Sets the latest returned value by an action manually
Returns value returned by the latest dispatched action
Enable/Disable model binding during dispatch
Dispatches a handle action taking into account the routing parameters
Dispatches a handle action taking into account the routing parameters
Forwards the execution flow to another controller/action Dispatchers are unique per module. Forwarding between modules is not allowed
$this->dispatcher->forward(array("controller" => "posts", "action" => "index"));
Check if the current executed action was forwarded by another one
Possible class name that will be located to dispatch the request
Set empty properties to their defaults (where defaults are available)
© 2011–2016 Phalcon Framework Team
Licensed under the Creative Commons Attribution License 3.0.
https://docs.phalconphp.com/en/latest/api/Phalcon_Cli_Dispatcher.html