smarty\ViewRenderer $cachePath

$cachePath public property The directory or path alias pointing to where Smarty cache will be stored. public string $cachePath = '@runtime/Smarty/cache'

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.

rbac\BaseManager getItems()

getItems() protected abstract method Returns the items of the specified type. protected abstract yii\rbac\Item[] getItems ( $type )$type integer The auth item type (either yii\rbac\Item::TYPE_ROLE or yii\rbac\Item::TYPE_PERMISSION return yii\rbac\Item[] The auth items of the specified type.

authclient\OpenId getReturnUrl()

getReturnUrl() public method public string getReturnUrl ( )return string Authentication return URL.

mongodb\Database getCollection()

getCollection() public method Returns the Mongo collection with the given name. public yii\mongodb\Collection getCollection ( $name, $refresh = false )$name string Collection name $refresh boolean Whether to reload the collection instance even if it is found in the cache. return yii\mongodb\Collection Mongo collection instance.

web\Request $queryString

$queryString public read-only property Part of the request URL that is after the question mark public string getQueryString ( )

web\Session getSavePath()

getSavePath() public method Gets the current session save path. This is a wrapper for PHP session_save_path(). public string getSavePath ( )return string The current session save path, defaults to '/tmp'.

elasticsearch\ActiveRecord mget()

mget() public static method Gets a list of records by its primary keys. public static array mget ( array $primaryKeys, $options = [] )$primaryKeys array An array of primaryKey values $options array Options given in this parameter are passed to elasticsearch as request URI parameters. Please refer to the elasticsearch documentation for more details on these options. return array The record instances, or empty array if nothing was found

web\Session getTimeout()

getTimeout() public method public integer getTimeout ( )return integer The number of seconds after which data will be seen as 'garbage' and cleaned up. The default value is 1440 seconds (or the value of "session.gc_maxlifetime" set in php.ini).

elasticsearch\ActiveRecord find()

find() public static method Creates an \yii\elasticsearch\ActiveQueryInterface instance for query purpose. The returned \yii\elasticsearch\ActiveQueryInterface instance can be further customized by calling methods defined in \yii\elasticsearch\ActiveQueryInterface before one() or all() is called to return populated ActiveRecord instances. For example, // find the customer whose ID is 1 $customer = Customer::find()->where(['id' => 1])->one(); // find all active customers and order