caching\Cache mget()

mget() public method Retrieves multiple values from cache with the specified keys. Some caches (such as memcache, apc) allow retrieving multiple cached values at the same time, which may improve the performance. In case a cache does not support this feature natively, this method will try to simulate it. public array mget ( $keys )$keys string[] List of string keys identifying the cached values return array List of cached values corresponding to the specified keys. The array is returne

caching\DbCache gc()

gc() public method Removes the expired data values. public void gc ( $force = false )$force boolean Whether to enforce the garbage collection regardless of $gcProbability. Defaults to false, meaning the actual deletion happens with the probability as specified by $gcProbability.

bootstrap\ActiveField label()

label() public method Generates a label tag for $attribute. public $this label ( $label = null, $options = [] )$label null|string|false The label to use. If null, the label will be generated via \yii\bootstrap\Model::getAttributeLabel(). If false, the generated field will not contain the label part. Note that this will NOT be encoded. $options null|array The tag options in terms of name-value pairs. It will be merged with $labelOptions. The options will be rendered as the attribute

widgets\DetailView renderAttribute()

renderAttribute() protected method Renders a single attribute. protected string renderAttribute ( $attribute, $index )$attribute array The specification of the attribute to be rendered. $index integer The zero-based index of the attribute in the $attributes array return string The rendering result

debug\panels\RequestPanel getFlashes()

getFlashes() protected method Getting flash messages without deleting them or touching deletion counters protected array getFlashes ( )return array Flash messages (key => message).

authclient\OpenId buildSregParams()

buildSregParams() protected method Composes SREG request parameters. protected array buildSregParams ( )return array SREG parameters.

mongodb\Cache deleteValue()

deleteValue() protected method Deletes a value with the specified key from cache This method should be implemented by child classes to delete the data from actual cache storage. protected boolean deleteValue ( $key )$key string The key of the value to be deleted return boolean If no error happens during deletion

grid\GridView $dataColumnClass

$dataColumnClass public property The default data column class if the class name is not explicitly specified when configuring a data column. Defaults to 'yii\grid\DataColumn'. public string $dataColumnClass = null

sphinx\Schema resolveIndexNames()

resolveIndexNames() protected method Resolves the index name. protected void resolveIndexNames ( $index, $name )$index yii\sphinx\IndexSchema The index metadata object $name string The index name

db\ActiveRecordInterface findOne()

findOne() public abstract static method Returns a single active record model instance by a primary key or an array of column values. The method accepts: a scalar value (integer or string): query by a single primary key value and return the corresponding record (or null if not found). a non-associative array: query by a list of primary key values and return the first record (or null if not found). an associative array of name-value pairs: query by a set of attribute values and return a singl