Class ConsoleInputOption
An object to represent a single option used in the command line. ConsoleOptionParser creates these when you use addOption()
Package: Cake\Console
Copyright: Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
License: MIT License
See:
Located at Cake/Console/ConsoleInputOption.php
Copyright: Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
License: MIT License
See:
ConsoleOptionParser::addOption()Located at Cake/Console/ConsoleInputOption.php
Method Detail
__constructsource public
__construct( string|array $name , string $short null , string $help '' , boolean $boolean false , string $default '' , array $choices array() )
Make a new Input Option
Parameters
- string|array
$name - The long name of the option, or an array with all the properties.
- string
$shortoptional null - The short alias for this option
- string
$helpoptional '' - The help text for this option
- boolean
$booleanoptional false - Whether this option is a boolean option. Boolean options don't consume extra tokens
- string
$defaultoptional '' - The default value for this option.
- array
$choicesoptional array() - Valid choices for this option.
Throws
ConsoleExceptionConsoleException
helpsource public
help( integer $width 0 )
Generate the help for this this option.
Parameters
- integer
$widthoptional 0 - The width to make the name of the option.
Returns
stringstring
shortsource public
short( )
Get the value of the short attribute.
Returns
stringValue of this->_short.
validChoicesource public
validChoice( string $value )
Check that a value is a valid choice for this option.
Parameters
- string
$value - The choice to validate.
Returns
booleanbool
Throws
ConsoleExceptionConsoleException
xmlsource public
xml( SimpleXmlElement $parent )
Append the option's xml into the parent.
Parameters
- SimpleXmlElement
$parent - The parent element.
Returns
SimpleXmlElementThe parent with this option appended.
Properties summary
© 2005–2016 The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
http://api.cakephp.org/2.7/class-ConsoleInputOption.html