rbac\PhpManager getPermissionsByUser()

getPermissionsByUser() public method Returns all permissions that the user has. public yii\rbac\Permission[] getPermissionsByUser ( $userId )$userId string|integer The user ID (see yii\web\User::$id) return yii\rbac\Permission[] All permissions that the user has. The array is indexed by the permission names.

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

gii\generators\controller\Generator getControllerFile()

getControllerFile() public method public string getControllerFile ( )return string The controller class file path

helpers\BaseInflector variablize()

variablize() public static method Same as camelize but first char is in lowercase. Converts a word like "send_email" to "sendEmail". It will remove non alphanumeric character from the word, so "who's online" will be converted to "whoSOnline" public static string variablize ( $word )$word string To lowerCamelCase

sphinx\Schema getColumnPhpType()

getColumnPhpType() protected method Extracts the PHP type from abstract DB type. protected string getColumnPhpType ( $column )$column yii\sphinx\ColumnSchema The column schema information return string PHP type name

redis\LuaScriptBuilder buildCount()

buildCount() public method Builds a Lua script for getting count of records public string buildCount ( $query )$query yii\redis\ActiveQuery The query used to build the script

validators\CompareValidator $operator

$operator public property The operator for comparison. The following operators are supported: ==: check if two values are equal. The comparison is done is non-strict mode. ===: check if two values are equal. The comparison is done is strict mode. !=: check if two values are NOT equal. The comparison is done is non-strict mode. !==: check if two values are NOT equal. The comparison is done is strict mode. >: check if value being validated is greater than the value being compared with

data\Pagination getQueryParam()

getQueryParam() protected method Returns the value of the specified query parameter. This method returns the named parameter value from $params. Null is returned if the value does not exist. protected string getQueryParam ( $name, $defaultValue = null )$name string The parameter name $defaultValue string The value to be returned when the specified parameter does not exist in $params. return string The parameter value

sphinx\ActiveQuery init()

init() public method Initializes the object. This method is called at the end of the constructor. The default implementation will trigger an EVENT_INIT event. If you override this method, make sure you call the parent implementation at the end to ensure triggering of the event. public void init ( )

data\DataProviderInterface getTotalCount()

getTotalCount() public abstract method Returns the total number of data models. When pagination is false, this is the same as count. public abstract integer getTotalCount ( )return integer Total number of possible data models.