Class ShellDispatcher
Shell dispatcher handles dispatching cli commands.
Copyright: Copyright 2005-2012, Cake Software Foundation, Inc. (http://cakefoundation.org)
License: License (http://www.opensource.org/licenses/mit-license.php)
Location: Cake/Console/ShellDispatcher.php
Properties summary
Method Summary
-
__construct() public
Constructor -
_bootstrap() protected
Initializes the environment and loads the Cake core. -
_getShell() protected
Get shell to use, either plugin shell or application shell -
_initConstants() protected
Defines core configuration. -
_initEnvironment() protected
Defines current working environment. -
_parsePaths() protected
Parses out the paths from from the argv -
_stop() protected
Stop execution of the current script -
dispatch() public
Dispatches a CLI request -
help() public
Shows console help. Performs an internal dispatch to the CommandList Shell -
parseParams() public
Parses command line options and extracts the directory paths from $params -
run() public static
Run the dispatcher -
shiftArgs() public
Removes first argument and shifts other arguments up
Method Detail
__construct() public ¶
__construct( array $args = array() , boolean $bootstrap = true )
Constructor
The execution of the script is stopped after dispatching the request with a status code of either 0 or 1 according to the result of the dispatch.
Parameters
- array $args optional array()
- the argv from PHP
- boolean $bootstrap optional true
- Should the environment be bootstrapped.
_bootstrap() protected ¶
_bootstrap( )
Initializes the environment and loads the Cake core.
Returns
Success.
_getShell() protected ¶
_getShell( string $shell )
Get shell to use, either plugin shell or application shell
All paths in the loaded shell paths are searched.
Parameters
- string $shell
- Optionally the name of a plugin
Returns
An object
Throws
_parsePaths() protected ¶
_parsePaths( array $args )
Parses out the paths from from the argv
Parameters
- array $args
_stop() protected ¶
_stop( integer|string $status = 0 )
Stop execution of the current script
Parameters
- integer|string $status optional 0
- see http://php.net/exit for values
parseParams() public ¶
parseParams( array $args )
Parses command line options and extracts the directory paths from $params
Parameters
- array $args
- Parameters to parse
run() public static ¶
run( array $argv )
Run the dispatcher
Parameters
- array $argv
- The argv from PHP
shiftArgs() public ¶
shiftArgs( )
Removes first argument and shifts other arguments up
Returns
Null if there are no arguments otherwise the shifted argument