web\Session setSavePath()

setSavePath() public method Sets the current session save path. This is a wrapper for PHP session_save_path(). public void setSavePath ( $value )$value string The current session save path. This can be either a directory name or a path alias. throws yii\base\InvalidParamException if the path is not a valid directory

caching\Cache mset()

mset() public method Stores multiple items in cache. Each item contains a value identified by a key. If the cache already contains such a key, the existing value and expiration time will be replaced with the new ones, respectively. public boolean mset ( $items, $duration = 0, $dependency = null )$items array The items to be cached, as key-value pairs. $duration integer Default number of seconds in which the cached values will expire. 0 means never expire. $dependency yii\caching\Depen

grid\Column renderFilterCell()

renderFilterCell() public method Renders the filter cell. public void renderFilterCell ( )

authclient\BaseClient setNormalizeUserAttributeMap()

setNormalizeUserAttributeMap() public method public void setNormalizeUserAttributeMap ( $normalizeUserAttributeMap )$normalizeUserAttributeMap array Normalize user attribute map.

rest\UrlRule init()

init() public method Initializes the object. This method is invoked at the end of the constructor after the object is initialized with the given configuration. public void init ( )

base\NotSupportedException getName()

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

sphinx\ActiveDataProvider getFacet()

getFacet() public method Returns results of the specified facet. public array getFacet ( $name )$name string Facet name return array Facet results. throws yii\base\InvalidCallException if requested facet does not present in results.

rbac\DbManager $db

$db public property The DB connection object or the application component ID of the DB connection. After the DbManager object is created, if you want to change this property, you should only assign it with a DB connection object. Starting from version 2.0.2, this can also be a configuration array for creating the object. public yii\db\Connection|array|string $db = 'db'

data\Pagination setPage()

setPage() public method Sets the current page number. public void setPage ( $value, $validatePage = false )$value integer The zero-based index of the current page. $validatePage boolean Whether to validate the page number. Note that in order to validate the page number, both $validatePage and this parameter must be true.

sphinx\Query addWithin()

addWithin() public method Adds additional WITHIN GROUP ORDER BY columns to the query. See also within(). public $this addWithin ( $columns )$columns string|array The columns (and the directions) to find best row within a group. Columns can be specified in either a string (e.g. "id ASC, name DESC") or an array (e.g. ['id' => Query::SORT_ASC, 'name' => Query::SORT_DESC]). The method will automatically quote the column names unless a column contains some parenthesis (which means the