grid\GridView renderTableHeader()

renderTableHeader() public method Renders the table header. public string renderTableHeader ( )return string The rendering result.

debug\panels\DbPanel getModels()

getModels() protected method Returns an array of models that represents logs of the current request. Can be used with data providers such as \yii\data\ArrayDataProvider. protected array getModels ( )return array Models

debug\panels\MailPanel getMessages()

getMessages() public method Returns info about messages of current request. Each element is array holding message info, such as: time, reply, bc, cc, from, to and other. public array getMessages ( )return array Messages

caching\FileCache addValue()

addValue() protected method Stores a value identified by a key into cache if the cache does not contain this key. This is the implementation of the method declared in the parent class. protected boolean addValue ( $key, $value, $duration )$key string The key identifying the value to be cached $value string The value to be cached. Other types (if you have disabled $serializer) unable to get is correct in getValue(). $duration integer The number of seconds in which the cached value wil

elasticsearch\DebugPanel getName()

getName() public method public string getName ( )return string Name of the panel

grid\GridView $filterModel

$filterModel public property The model that keeps the user-entered filter data. When this property is set, the grid view will enable column-based filtering. Each data column by default will display a text field at the top that users can fill in to filter the data. Note that in order to show an input field for filtering, a column must have its yii\grid\DataColumn::$attribute property set or have yii\grid\DataColumn::$filter set as the HTML code for the input field. When this property is not

db\Query $join

$join public property How to join with other tables. Each array element represents the specification of one join which has the following structure: [$joinType, $tableName, $joinCondition] For example, [ ['INNER JOIN', 'user', 'user.id = author_id'], ['LEFT JOIN', 'team', 'team.id = team_id'], ] public array $join = null

mongodb\rbac\MongoDbManager getAssignments()

getAssignments() public method Returns all role assignment information for the specified user. public yii\rbac\Assignment[] getAssignments ( $userId )$userId string|integer The user ID (see yii\web\User::$id) return yii\rbac\Assignment[] The assignments indexed by role names. An empty array will be returned if there is no role assigned to the user.

gii\generators\crud\Generator generateSearchConditions()

generateSearchConditions() public method Generates search conditions public array generateSearchConditions ( )

rbac\BaseManager getItem()

getItem() protected abstract method Returns the named auth item. protected abstract yii\rbac\Item getItem ( $name )$name string The auth item name. return yii\rbac\Item The auth item corresponding to the specified name. Null is returned if no such item.