gii\controllers\DefaultController $layout

$layout public property public $layout = 'generator'

gii\controllers\DefaultController $generator

$generator public property public yii\gii\Generator $generator = null

gii\console\GenerateController __set()

__set() public method Sets the value of a component property. This method will check in the following order and act accordingly: a property defined by a setter: set the property value an event in the format of "on xyz": attach the handler to the event "xyz" a behavior in the format of "as xyz": attach the behavior named as "xyz" a property of a behavior: set the behavior property value Do not call this method directly as it is a PHP magic method that will be implicitly called when executing

gii\console\GenerateController __get()

__get() public method Returns the value of a component property. This method will check in the following order and act accordingly: a property defined by a getter: return the getter result a property of a behavior: return the behavior property value Do not call this method directly as it is a PHP magic method that will be implicitly called when executing $value = $component->property;. public mixed __get ( $name )$name string The property name return mixed The property value or the

gii\console\GenerateController options()

options() public method Returns the names of valid options for the action (id) An option requires the existence of a public member variable whose name is the option name. Child classes may override this method to specify possible options. Note that the values setting via options are not available until beforeAction() is being called. public array options ( $id )$id return array The names of the options valid for the action

gii\console\GenerateController init()

init() public method Initializes the object. This method is invoked at the end of the constructor after the object is initialized with the given configuration. public void init ( )

gii\console\GenerateController getUniqueID()

getUniqueID() public method public void getUniqueID ( )

gii\console\GenerateController getActionOptionsHelp()

getActionOptionsHelp() public method Returns the help information for the options for the action. The returned value should be an array. The keys are the option names, and the values are the corresponding help information. Each value must be an array of the following structure: type: string, the PHP type of this argument. default: string, the default value of this argument comment: string, the comment of this argument The default implementation will return the help information extracted fro

gii\console\GenerateController getActionHelpSummary()

getActionHelpSummary() public method Returns a one-line short summary describing the specified action. public string getActionHelpSummary ( $action )$action yii\base\Action Action to get summary for return string A one-line short summary describing the specified action.

gii\console\GenerateController getActionHelp()

getActionHelp() public method Returns the detailed help information for the specified action. public string getActionHelp ( $action )$action yii\base\Action Action to get help for return string The detailed help information for the specified action.