rbac\PhpManager updateRule()

updateRule() public method Updates a rule to the RBAC system. public boolean updateRule ( $name, $rule )$name string The name of the rule being updated $rule yii\rbac\Rule The updated rule return boolean Whether the rule is successfully updated throws Exception if data validation or saving fails (such as the name of the rule is not unique)

widgets\LinkPager $activePageCssClass

$activePageCssClass public property The CSS class for the active (currently selected) page button. public string $activePageCssClass = 'active'

base\DynamicModel addRule()

addRule() public method Adds a validation rule to this model. You can also directly manipulate $validators to add or remove validation rules. This method provides a shortcut. public $this addRule ( $attributes, $validator, $options = [] )$attributes string|array The attribute(s) to be validated by the rule $validator mixed The validator for the rule.This can be a built-in validator name, a method name of the model class, an anonymous function, or a validator class name. $options arr

mongodb\rbac\MongoDbManager getAssignment()

getAssignment() public method Returns the assignment information regarding a role and a user. public null|yii\rbac\Assignment getAssignment ( $roleName, $userId )$roleName string The role name $userId string|integer The user ID (see yii\web\User::$id) return null|yii\rbac\Assignment The assignment information. Null is returned if the role is not assigned to the user.

elasticsearch\ActiveRecord $score

$score public read-only property Returns the score of this record when it was retrieved via a find() query. public float getScore ( )

base\InvalidParamException getName()

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

elasticsearch\Connection $connectionTimeout

$connectionTimeout public property Timeout to use for connecting to an elasticsearch node. This value will be used to configure the curl CURLOPT_CONNECTTIMEOUT option. If not set, no explicit timeout will be set for curl. public float $connectionTimeout = null

console\controllers\MigrateController options()

options() public method Returns the names of valid options for the action (id) An option requires the existence of a public member variable whose name is the option name. Child classes may override this method to specify possible options. Note that the values setting via options are not available until beforeAction() is being called. public array options ( $actionID )$actionID string The action id of the current request return array The names of the options valid for the action

validators\FileValidator $wrongMimeType

$wrongMimeType public property The error message used when the file has an mime type that is not allowed by $mimeTypes property. You may use the following tokens in the message: {attribute}: the attribute name {file}: the uploaded file name {mimeTypes}: the value of $mimeTypes public string $wrongMimeType = null

web\IdentityInterface validateAuthKey()

validateAuthKey() public abstract method Validates the given auth key. This is required if yii\web\User::$enableAutoLogin is enabled. See also getAuthKey(). public abstract boolean validateAuthKey ( $authKey )$authKey string The given auth key return boolean Whether the given auth key is valid.