filters\AccessRule matchRole()

matchRole() protected method protected boolean matchRole ( $user )$user yii\web\User The user object return boolean Whether the rule applies to the role

i18n\Formatter $timeZone

$timeZone public property The time zone to use for formatting time and date values. This can be any value that may be passed to date_default_timezone_set() e.g. UTC, Europe/Berlin or America/Chicago. Refer to the php manual for available time zones. If this property is not set, yii\base\Application::$timeZone will be used. Note that the default time zone for input data is assumed to be UTC by default if no time zone is included in the input date value. If you store your data in a different

filters\auth\HttpBearerAuth $realm

$realm public property The HTTP authentication realm public string $realm = 'api'

db\Schema quoteSimpleColumnName()

quoteSimpleColumnName() public method Quotes a simple column name for use in a query. A simple column name should contain the column name only without any prefix. If the column name is already quoted or is the asterisk character '*', this method will do nothing. public string quoteSimpleColumnName ( $name )$name string Column name return string The properly quoted column name

grid\GridView renderTableRow()

renderTableRow() public method Renders a table row with the given data model and key. public string renderTableRow ( $model, $key, $index )$model mixed The data model to be rendered $key mixed The key associated with the data model $index integer The zero-based index of the data model among the model array returned by $dataProvider. return string The rendering result

rbac\ManagerInterface removeAllPermissions()

removeAllPermissions() public abstract method Removes all permissions. All parent child relations will be adjusted accordingly. public abstract void removeAllPermissions ( )

db\Command bindValues()

bindValues() public method Binds a list of values to the corresponding parameters. This is similar to bindValue() except that it binds multiple values at a time. Note that the SQL data type of each value is determined by its PHP type. public $this bindValues ( $values )$values array The values to be bound. This must be given in terms of an associative array with array keys being the parameter names, and array values the corresponding parameter values, e.g. [':name' => 'John', ':age' =

gii\generators\model\Generator $db

$db public property public $db = 'db'

validators\UniqueValidator validateAttribute()

validateAttribute() public method Validates a single attribute. Child classes must implement this method to provide the actual validation logic. public void validateAttribute ( $model, $attribute )$model yii\base\Model The data model to be validated $attribute string The name of the attribute to be validated.

redis\ActiveRecord keyPrefix()

keyPrefix() public static method Declares prefix of the key that represents the keys that store this records in redis. By default this method returns the class name as the table name by calling yii\helpers\Inflector::camel2id(). For example, 'Customer' becomes 'customer', and 'OrderItem' becomes 'order_item'. You may override this method if you want different key naming. public static string keyPrefix ( )return string The prefix to apply to all AR keys