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

i18n\GettextPoFile save()

save() public method Saves messages to a PO file. public void save ( $filePath, $messages )$filePath string File path $messages array Message translations. Array keys are source messages and array values are translated messages: source message => translated message. Note if the message has a context, the message ID must be prefixed with the context with chr(4) as the separator.

db\Command addPrimaryKey()

addPrimaryKey() public method Creates a SQL command for adding a primary key constraint to an existing table. The method will properly quote the table and column names. public $this addPrimaryKey ( $name, $table, $columns )$name string The name of the primary key constraint. $table string The table that the primary key constraint will be added to. $columns string|array Comma separated string or array of columns that the primary key will consist of. return $this The command object

mongodb\file\Collection getChunkCollection()

getChunkCollection() public method Returns the MongoDB collection for the file chunks. public yii\mongodb\Collection getChunkCollection ( $refresh = false )$refresh boolean Whether to reload the collection instance even if it is found in the cache. return yii\mongodb\Collection Mongo collection instance.

mongodb\Connection createCommand()

createCommand() public method (available since version 2.1) Creates MongoDB command. public yii\mongodb\Command createCommand ( $document = [], $databaseName = null )$document array Command document contents. $databaseName string|null Database name, if not set $defaultDatabaseName will be used. return yii\mongodb\Command Command instance.

sphinx\gii\model\Generator attributeLabels()

attributeLabels() public method Returns the attribute labels. Attribute labels are mainly used for display purpose. For example, given an attribute firstName, we can declare a label First Name which is more user-friendly and can be displayed to end users. By default an attribute label is generated using generateAttributeLabel(). This method allows you to explicitly specify attribute labels. Note, in order to inherit labels defined in the parent class, a child class needs to merge the parent

validators\FilterValidator $skipOnArray

$skipOnArray public property Whether the filter should be skipped if an array input is given. If true and an array input is given, the filter will not be applied. public boolean $skipOnArray = false