base\Controller $defaultAction

$defaultAction public property The ID of the action that is used when the action ID is not specified in the request. Defaults to 'index'. public string $defaultAction = 'index'

base\Controller $action

$action public property The action that is currently being executed. This property will be set by run() when it is called by yii\base\Application to run an action. public yii\base\Action $action = null

base\Configurable

All Classes Implemented by yii\apidoc\commands\ApiController, yii\apidoc\commands\GuideController, yii\apidoc\components\BaseController, yii\apidoc\models\BaseDoc, yii\apidoc\models\ClassDoc, yii\apidoc\models\ConstDoc, yii\apidoc\models\Context, yii\apidoc\models\EventDoc, yii\apidoc\models\FunctionDoc, yii\apidoc\models\InterfaceDoc, yii\apidoc\models\MethodDoc, yii\apidoc\models\ParamDoc, yii\apidoc\models\PropertyDoc, yii\apidoc\models\TraitDoc, yii\apidoc\models\TypeDoc, yii\apidoc\rend

base\Component __unset()

__unset() public method Sets a component property to be null. This method will check in the following order and act accordingly: a property defined by a setter: set the property value to be null a property of a behavior: set the property value to be null Do not call this method directly as it is a PHP magic method that will be implicitly called when executing unset($component->property). See also http://php.net/manual/en/function.unset.php. public void __unset ( $name )$name string Th

base\Component __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

base\Component __isset()

__isset() public method Checks if a property is set, i.e. defined and not null. This method will check in the following order and act accordingly: a property defined by a setter: return whether the property is set a property of a behavior: return whether the property is set return false for non existing properties Do not call this method directly as it is a PHP magic method that will be implicitly called when executing isset($component->property). See also http://php.net/manual/en/functi

base\Component __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;. See also __set(). public mixed __get ( $name )$name string The property name return mixed The prop

base\Component __clone()

__clone() public method This method is called after the object is created by cloning an existing one. It removes all behaviors because they are attached to the old object. public void __clone ( )

base\Component __call()

__call() public method Calls the named method which is not a class method. This method will check if any attached behavior has the named method and will execute it if available. Do not call this method directly as it is a PHP magic method that will be implicitly called when an unknown method is being invoked. public mixed __call ( $name, $params )$name string The method name $params array Method parameters return mixed The method return value throws yii\base\UnknownMethodException

base\Component trigger()

trigger() public method Triggers an event. This method represents the happening of an event. It invokes all attached handlers for the event including class-level handlers. public void trigger ( $name, yii\base\Event $event = null )$name string The event name $event yii\base\Event The event parameter. If not set, a default yii\base\Event object will be created.