Documentation

Class Phalcon\Cli\Dispatcher

extends abstract class Phalcon\Dispatcher

implements Phalcon\DispatcherInterface, Phalcon\Di\InjectionAwareInterface, Phalcon\Events\EventsAwareInterface

Source on GitHub

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.

<?php

$di = new Phalcon\Di();

$dispatcher = new Phalcon\Cli\Dispatcher();

  $dispatcher->setDI($di);

$dispatcher->setTaskName('posts');
$dispatcher->setActionName('index');
$dispatcher->setParams(array());

$handle = $dispatcher->dispatch();

Constants

integer EXCEPTION_NO_DI

integer EXCEPTION_CYCLIC_ROUTING

integer EXCEPTION_HANDLER_NOT_FOUND

integer EXCEPTION_INVALID_HANDLER

integer EXCEPTION_INVALID_PARAMS

integer EXCEPTION_ACTION_NOT_FOUND

Methods

public setTaskSuffix (string $taskSuffix)

Sets the default task suffix

public string getTaskSuffix ()

Gets the default task suffix

public setDefaultTask (string $taskName)

Sets the default task name

public setTaskName (string $taskName)

Sets the task name to be dispatched

public string getTaskName ()

Gets last dispatched task name

protected _throwDispatchException ()

Throws an internal exception

protected _handleException ()

Handles a user exception

public string getTaskClass ()

Possible task class name that will be located to dispatch the request

public Phalcon\Cli\Task getLastTask ()

Returns the lastest dispatched controller

public Phalcon\Cli\Task getActiveTask ()

Returns the active task in the dispatcher

public __construct () inherited from Phalcon\Dispatcher

Phalcon\Dispatcher constructor

public setActionSuffix (string $actionSuffix) inherited from Phalcon\Dispatcher

Sets the default action suffix

public string getActionSuffix () inherited from Phalcon\Dispatcher

Gets the default action suffix

public setHandlerSuffix (string $handlerSuffix) inherited from Phalcon\Dispatcher

Sets the default handler suffix

public string getHandlerSuffix () inherited from Phalcon\Dispatcher

Gets the default handler suffix

public setDefaultModule (string $module) inherited from Phalcon\Dispatcher

Sets the default module

public string getDefaultModule () inherited from Phalcon\Dispatcher

Returns the default module

public setDefaultNamespace (string $namespace) inherited from Phalcon\Dispatcher

Sets the default namespace

public string getDefaultNamespace () inherited from Phalcon\Dispatcher

Returns the default namespace

public setDefaultHandler (unknown $handlerName) inherited from Phalcon\Dispatcher

Sets the default handler

public string getDefaultHandler () inherited from Phalcon\Dispatcher

Returns the default handler

public setDefaultAction (string $actionName) inherited from Phalcon\Dispatcher

Sets the default action name

public string getDefaultAction () inherited from Phalcon\Dispatcher

Returns the default action

public setModuleName (unknown $module) inherited from Phalcon\Dispatcher

Sets the module where the controller is (only informative)

public string getModuleName () inherited from Phalcon\Dispatcher

Gets the module where the controller class is

public setNamespaceName (unknown $namespace) inherited from Phalcon\Dispatcher

Sets the namespace where the controller class is

public string getNamespaceName () inherited from Phalcon\Dispatcher

Gets a namespace to be prepended to the current handler name

public setHandlerName (string $handlerName) inherited from Phalcon\Dispatcher

Sets the action name to be dispatched

public string getHandlerName () inherited from Phalcon\Dispatcher

Gets the lastest dispatched handler name

public setActionName (string $actionName) inherited from Phalcon\Dispatcher

Sets the action name to be dispatched

public string getActionName () inherited from Phalcon\Dispatcher

Gets the lastest dispatched action name

public setLogicBinding (boolean $value) inherited from Phalcon\Dispatcher

Enable/Disable logic binding during dispatch

public boolean isLogicBinding () inherited from Phalcon\Dispatcher

Check if logic binding

public setParams (array $params) inherited from Phalcon\Dispatcher

Sets action params to be dispatched

public array getParams () inherited from Phalcon\Dispatcher

Gets action params

public boolean hasParam (mixed $param) inherited from Phalcon\Dispatcher

Check if a param exists

public setParam (mixed $param, mixed $value) inherited from Phalcon\Dispatcher

Set a param by its name or numeric index

public mixed getParam (mixed $param, [string|array $filters]) inherited from Phalcon\Dispatcher

Gets a param by its name or numeric index

public Phalcon\Mvc\Controller getActiveHandler () inherited from Phalcon\Dispatcher

Returns the current handler to be/executed in the dispatcher

public string getActiveMethod () inherited from Phalcon\Dispatcher

Returns the current method to be/executed in the dispatcher

public boolean isFinished () inherited from Phalcon\Dispatcher

Checks if the dispatch loop is finished or has more pendent controllers/tasks to disptach

public setFinished (boolean $finished) inherited from Phalcon\Dispatcher

Sets the finished

public setReturnedValue (mixed $value) inherited from Phalcon\Dispatcher

Sets the latest returned value by an action manually

public mixed getReturnedValue () inherited from Phalcon\Dispatcher

Returns value returned by the lastest dispatched action

public object dispatch () inherited from Phalcon\Dispatcher

Dispatches a handle action taking into account the routing parameters

public bool forward (string|array $forward) inherited from Phalcon\Dispatcher

Forwards the execution flow to another controller/action Dispatchers are unique per module. Forwarding between modules is not allowed

<?php

  $this->dispatcher->forward(array('controller' => 'posts', 'action' => 'index'));

public boolean wasForwarded () inherited from Phalcon\Dispatcher

Check if the current executed action was forwarded by another one

public string getHandlerClass () inherited from Phalcon\Dispatcher

Possible class name that will be located to dispatch the request

public camelizeNamespace (bool $camelize) inherited from Phalcon\Dispatcher

Enables/Disables automatically camelize namespace

<?php

  $this->dispatcher->camelizeNamespace(FALSE);

public camelizeController (bool $camelize) inherited from Phalcon\Dispatcher

Enables/Disables automatically camelize controller

<?php

  $this->dispatcher->camelizeController(FALSE);

public Phalcon\DispatcherInterface setErrorHandler (unknown $callback, [int $exception_code]) inherited from Phalcon\Dispatcher

Set error handler

public mixed getErrorHandler (int $exception_code) inherited from Phalcon\Dispatcher

Get error handler

public Exception getLastException () inherited from Phalcon\Dispatcher

Returns the last exception

public Object getLastHandler () inherited from Phalcon\Dispatcher

Returns the last handler

public string getPreviousNamespaceName () inherited from Phalcon\Dispatcher

Returns the previons namespace

public string getPreviousActionName () inherited from Phalcon\Dispatcher

Returns the previons action

public array getPreviousParams () inherited from Phalcon\Dispatcher

Returns the previons action params

public mixed getPreviousParam (mixed $param, [string|array $filters]) inherited from Phalcon\Dispatcher

Gets a previons param by its name or numeric index

public setDI (Phalcon\DiInterface $dependencyInjector) inherited from Phalcon\Di\Injectable

Sets the dependency injector

public Phalcon\DiInterface getDI ([unknown $error], [unknown $notUseDefault]) inherited from Phalcon\Di\Injectable

Returns the internal dependency injector

public setEventsManager (Phalcon\Events\ManagerInterface $eventsManager) inherited from Phalcon\Di\Injectable

Sets the event manager

public Phalcon\Events\ManagerInterface getEventsManager () inherited from Phalcon\Di\Injectable

Returns the internal event manager

public boolean fireEvent (string $eventName, [mixed $data], [unknown $cancelable]) inherited from Phalcon\Di\Injectable

Fires an event, implicitly calls behaviors and listeners in the events manager are notified

public mixed fireEventCancel (string $eventName, [mixed $data], [unknown $cancelable]) inherited from Phalcon\Di\Injectable

Fires an event, can stop the event by returning to the false

public boolean hasService (string $name) inherited from Phalcon\Di\Injectable

Check whether the DI contains a service by a name

public Phalcon\Di\ServiceInterface setService (unknown $name) inherited from Phalcon\Di\Injectable

Sets a service from the DI

public object|null getService (unknown $name) inherited from Phalcon\Di\Injectable

Obtains a service from the DI

public mixed getResolveService (string $name, [array $args], [unknown $noerror], [unknown $noshared]) inherited from Phalcon\Di\Injectable

Resolves the service based on its configuration

public attachEvent (string $eventType, Closure $callback) inherited from Phalcon\Di\Injectable

Attach a listener to the events

public __get (unknown $property) inherited from Phalcon\Di\Injectable

Magic method __get

public __sleep () inherited from Phalcon\Di\Injectable

...

public __debugInfo () inherited from Phalcon\Di\Injectable

...