CommandsRoute Class Reference
[Controller]
Handle Command invocation (Check tokens!). More...
Inheritance diagram for CommandsRoute:
Public Member Functions |
|
__construct ($path, $controller, $action, $decorators=null) | |
Contructor. |
Detailed Description
Handle Command invocation (Check tokens!).
Definition at line 10 of file commandsroute.cls.php.
Constructor & Destructor Documentation
CommandsRoute::__construct | ( | $ | path, | |
$ | controller, | |||
$ | action, | |||
$ | decorators = null |
|||
) |
Contructor.
- Parameters:
-
object The controller to invoke string The function to invoke on controller string The URL this Token is responsible for mixed Array or single instance of IRouteDecorator
Reimplemented from RouteBase.
Definition at line 19 of file commandsroute.cls.php.
00019 { 00020 parent::__construct($path, $controller, $action, $decorators = null); 00021 $this->prepend_renderdecorator(new CommandsRouteRenderDecorator()); 00022 }
The documentation for this class was generated from the following file:
- gyro/core/controller/base/routes/commandsroute.cls.php