rbac\DbManager $cache

$cache public property (available since version 2.0.3) The cache used to improve RBAC performance. This can be one of the following: an application component ID (e.g. cache) a configuration array a yii\caching\Cache object When this is not set, it means caching is not enabled. Note that by enabling RBAC cache, all auth items, rules and auth item parent-child relationships will be cached and loaded into memory. This will improve the performance of RBAC permission check. However, it does requ

authclient\clients\GitHub $authUrl

$authUrl public property Authorize URL. Authorize URL. public string $authUrl = 'https://github.com/login/oauth/authorize'

base\Model getValidators()

getValidators() public method Returns all the validators declared in rules(). This method differs from getActiveValidators() in that the latter only returns the validators applicable to the current $scenario. Because this method returns an ArrayObject object, you may manipulate it by inserting or removing validators (useful in model behaviors). For example, $model->validators[] = $newValidator; public ArrayObject|yii\validators\Validator[] getValidators ( )return ArrayObject|yii\vali

mongodb\Migration createIndex()

createIndex() public method Creates an index on the collection and the specified fields. public void createIndex ( $collection, $columns, $options = [] )$collection string|array Name of the collection $columns array|string Column name or list of column names. $options array List of options in format: optionName => optionValue.

web\View getAssetManager()

getAssetManager() public method Registers the asset manager being used by this view object. public yii\web\AssetManager getAssetManager ( )return yii\web\AssetManager The asset manager. Defaults to the "assetManager" application component.

bootstrap\Tabs hasActiveTab()

hasActiveTab() protected method protected boolean hasActiveTab ( )return boolean If there's active tab defined

base\Theme getBasePath()

getBasePath() public method See also $pathMap. public string getBasePath ( )return string The root path of this theme. All resources of this theme are located under this directory.

data\Pagination $forcePageParam

$forcePageParam public property Whether to always have the page parameter in the URL created by createUrl(). If false and $page is 0, the page parameter will not be put in the URL. public boolean $forcePageParam = true

db\Command resetSequence()

resetSequence() public method Creates a SQL command for resetting the sequence value of a table's primary key. The sequence will be reset such that the primary key of the next new row inserted will have the specified value or 1. public $this resetSequence ( $table, $value = null )$table string The name of the table whose primary key sequence will be reset $value mixed The value for the primary key of the next new row inserted. If this is not set, the next new row's primary key will hav

validators\NumberValidator 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