helpers\BaseHtml resetButton()

resetButton() public static method Generates a reset button tag. public static string resetButton ( $content = 'Reset', $options = [] )$content string The content enclosed within the button tag. It will NOT be HTML-encoded. Therefore you can pass in HTML code such as an image tag. If this is is coming from end users, you should consider encode() it to prevent XSS attacks. $options array The tag options in terms of name-value pairs. These will be rendered as the attributes of the result

validators\FileValidator validateValue()

validateValue() protected method Validates a value. A validator class can implement this method to support data validation out of the context of a data model. protected array|null validateValue ( $file )$file return array|null The error message and the parameters to be inserted into the error message. Null should be returned if the data is valid. throws yii\base\NotSupportedException if the validator does not supporting data validation without a model

rbac\PhpManager getRolesByUser()

getRolesByUser() public method Returns the roles that are assigned to the user via assign(). Note that child roles that are not assigned directly to the user will not be returned. public yii\rbac\Role[] getRolesByUser ( $userId )$userId string|integer The user ID (see yii\web\User::$id) return yii\rbac\Role[] All roles directly assigned to the user. The array is indexed by the role names.

filters\AccessRule $ips

$ips public property List of user IP addresses that this rule applies to. An IP address can contain the wildcard * at the end so that it matches IP addresses with the same prefix. For example, '192.168.*' matches all IP addresses in the segment '192.168.'. If not set or empty, it means this rule applies to all IP addresses. See also yii\web\Request::$userIP. public array $ips = null

filters\AccessRule $actions

$actions public property List of action IDs that this rule applies to. The comparison is case-sensitive. If not set or empty, it means this rule applies to all actions. public array $actions = null

widgets\ActiveField $validationDelay

$validationDelay public property Number of milliseconds that the validation should be delayed when the user types in the field and $validateOnType is set true. If not set, it will take the value of yii\widgets\ActiveForm::$validationDelay. public integer $validationDelay = null

helpers\BaseHtml button()

button() public static method Generates a button tag. public static string button ( $content = 'Button', $options = [] )$content string The content enclosed within the button tag. It will NOT be HTML-encoded. Therefore you can pass in HTML code such as an image tag. If this is is coming from end users, you should consider encode() it to prevent XSS attacks. $options array The tag options in terms of name-value pairs. These will be rendered as the attributes of the resulting tag. The va

sphinx\QueryBuilder buildWhere()

buildWhere() public method public string buildWhere ( $indexes, $condition, &$params, $match = null )$indexes string[] List of index names, which affected by query $condition string|array $params array The binding parameters to be populated $match string|yii\db\Expression|null return string The WHERE clause built from \yii\sphinx\query.

db\Expression $params

$params public property List of parameters that should be bound for this expression. The keys are placeholders appearing in $expression and the values are the corresponding parameter values. public array $params = []

validators\StringValidator validateValue()

validateValue() protected method Validates a value. A validator class can implement this method to support data validation out of the context of a data model. protected array|null validateValue ( $value )$value mixed The data value to be validated. return array|null The error message and the parameters to be inserted into the error message. Null should be returned if the data is valid. throws yii\base\NotSupportedException if the validator does not supporting data validation withou