gii\Module resetGlobalSettings()

resetGlobalSettings() protected method Resets potentially incompatible global settings done in app config. protected void resetGlobalSettings ( )

caching\TagDependency $tags

$tags public property A list of tag names for this dependency. For a single tag, you may specify it as a string. public string|array $tags = []

codeception\BasePage __construct()

__construct() public method Constructor. public void __construct ( $I )$I \Codeception\Actor The testing guy object

base\Module $module

$module public property The parent module of this module. null if this module does not have a parent. public yii\base\Module $module = null

bootstrap\Progress $percent

$percent public property The amount of progress as a percentage. public integer $percent = 0

redis\ActiveQuery executeScript()

executeScript() protected method Executes a script created by yii\redis\LuaScriptBuilder protected array|boolean|null|string executeScript ( $db, $type, $columnName = null )$db yii\redis\Connection|null The database connection used to execute the query. If this parameter is not given, the db application component will be used. $type string The type of the script to generate $columnName string throws yii\base\NotSupportedException

db\DataReader $isClosed

$isClosed public read-only property Whether the reader is closed or not. public boolean getIsClosed ( )

elasticsearch\ActiveRecord index()

index() public static method public static string index ( )return string The name of the index this record is stored in.

Models

Attributes Scenarios Validation Rules Massive Assignment Data Exporting Best Practices Models are part of the MVC architecture. They are objects representing business data, rules and logic. You can create model classes by extending yii\base\Model or its child classes. The base class yii\base\Model supports many useful features: Attributes: represent the business data and can be accessed like normal object properties or array elements; Attribute labels: specify the display labels for attribut

db\ActiveRecord isTransactional()

isTransactional() public method Returns a value indicating whether the specified operation is transactional in the current $scenario. public boolean isTransactional ( $operation )$operation integer The operation to check. Possible values are OP_INSERT, OP_UPDATE and OP_DELETE. return boolean Whether the specified operation is transactional in the current $scenario.