filters\AccessRule $controllers

$controllers public property List of the controller IDs that this rule applies to. Each controller ID is prefixed with the module ID (if any). The comparison is case-sensitive. If not set or empty, it means this rule applies to all controllers. public array $controllers = null

gii\Generator defaultTemplate()

defaultTemplate() public method Returns the root path to the default code template files. The default implementation will return the "templates" subdirectory of the directory containing the generator class file. public string defaultTemplate ( )return string The root path to the default code template files.

web\CookieCollection getIterator()

getIterator() public method Returns an iterator for traversing the cookies in the collection. This method is required by the SPL interface IteratorAggregate. It will be implicitly called when you use foreach to traverse the collection. public ArrayIterator getIterator ( )return ArrayIterator An iterator for traversing the cookies in the collection.

web\HttpException getName()

getName() public method public string getName ( )return string The user-friendly name of this exception

gii\generators\model\Generator isHasManyRelation()

isHasManyRelation() protected method (available since version 2.0.5) Determines if relation is of has many type protected boolean isHasManyRelation ( $table, $fks )$table yii\db\TableSchema $fks array

db\QueryInterface orWhere()

orWhere() public abstract method Adds an additional WHERE condition to the existing one. The new condition and the existing one will be joined using the 'OR' operator. See also: where() andWhere() public abstract $this orWhere ( $condition )$condition string|array The new WHERE condition. Please refer to where() on how to specify this parameter. return $this The query object itself

data\BaseDataProvider $keys

$keys public property The list of key values corresponding to $models. Each data model in $models is uniquely identified by the corresponding key value in this array. public array getKeys ( )public void setKeys ( $keys )

widgets\ActiveField $template

$template public property The template that is used to arrange the label, the input field, the error message and the hint text. The following tokens will be replaced when render() is called: {label}, {input}, {error} and {hint}. public string $template = "{label}\n{input}\n{hint}\n{error}"

elasticsearch\ActiveRecord find()

find() public static method Creates an \yii\elasticsearch\ActiveQueryInterface instance for query purpose. The returned \yii\elasticsearch\ActiveQueryInterface instance can be further customized by calling methods defined in \yii\elasticsearch\ActiveQueryInterface before one() or all() is called to return populated ActiveRecord instances. For example, // find the customer whose ID is 1 $customer = Customer::find()->where(['id' => 1])->one(); // find all active customers and order

mongodb\Connection setDefaultDatabaseName()

setDefaultDatabaseName() public method Sets default database name. public void setDefaultDatabaseName ( $name )$name string Default database name.