base\Request $isConsoleRequest

$isConsoleRequest public property The value indicating whether the current request is made via console public boolean getIsConsoleRequest ( )public void setIsConsoleRequest ( $value )

rbac\ManagerInterface addChild()

addChild() public abstract method Adds an item as a child of another item. public abstract boolean addChild ( $parent, $child )$parent yii\rbac\Item $child yii\rbac\Item return boolean Whether the child successfully added throws yii\base\Exception if the parent-child relationship already exists or if a loop has been detected.

base\Request getIsConsoleRequest()

getIsConsoleRequest() public method Returns a value indicating whether the current request is made via command line public boolean getIsConsoleRequest ( )return boolean The value indicating whether the current request is made via console

db\BaseActiveRecord update()

update() public method Saves the changes to this active record into the associated database table. This method performs the following steps in order: call beforeValidate() when $runValidation is true. If beforeValidate() returns false, the rest of the steps will be skipped; call afterValidate() when $runValidation is true. If validation failed, the rest of the steps will be skipped; call beforeSave(). If beforeSave() returns false, the rest of the steps will be skipped; save the record into

helpers\BaseHtml activeLabel()

activeLabel() public static method Generates a label tag for the given model attribute. The label text is the label associated with the attribute, obtained via yii\base\Model::getAttributeLabel(). public static string activeLabel ( $model, $attribute, $options = [] )$model yii\base\Model The model object $attribute string The attribute name or expression. See getAttributeName() for the format about attribute expression. $options array The tag options in terms of name-value pairs. The

base\Theme getPath()

getPath() public method Converts a relative file path into an absolute one using $basePath. public string getPath ( $path )$path string The relative file path to be converted. return string The absolute file path throws yii\base\InvalidConfigException if $baseUrl is not set

base\DynamicModel undefineAttribute()

undefineAttribute() public method Undefines an attribute. public void undefineAttribute ( $name )$name string The attribute name

gii\generators\form\Generator validateViewPath()

validateViewPath() public method Validates $viewPath to make sure it is a valid path or path alias and exists. public void validateViewPath ( )

base\ErrorHandler convertExceptionToError()

convertExceptionToError() public static method Converts an exception into a PHP error. This method can be used to convert exceptions inside of methods like __toString() to PHP errors because exceptions cannot be thrown inside of them. public static void convertExceptionToError ( $exception )$exception Exception The exception to convert to a PHP error.

db\Command $pdoStatement

$pdoStatement public property The PDOStatement object that this command is associated with public PDOStatement $pdoStatement = null