db\TableSchema $fullName

$fullName public property The full name of this table, which includes the schema name prefix, if any. Note that if the schema name is the same as the default schema name, the schema name will not be included. public string $fullName = null

db\mssql\Schema loadTableSchema()

loadTableSchema() public method Loads the metadata for the specified table. public yii\db\mssql\TableSchema|null loadTableSchema ( $name )$name string Table name return yii\db\mssql\TableSchema|null Driver dependent table metadata. Null if the table does not exist.

authclient\Collection createClient()

createClient() protected method Creates auth client instance from its array configuration. protected yii\authclient\ClientInterface createClient ( $id, $config )$id string Auth client id. $config array Auth client instance configuration. return yii\authclient\ClientInterface Auth client instance.

elasticsearch\ActiveRecord attributes()

attributes() public method Returns the list of all attribute names of the model. This method must be overridden by child classes to define available attributes. Attributes are names of fields of the corresponding elasticsearch document. The primaryKey for elasticsearch documents is the _id field by default which is not part of the attributes. You may define path mapping for the _id field so that it is part of the _source fields and thus becomes part of the attributes. public string[] attr

db\Transaction commit()

commit() public method Commits a transaction. public void commit ( )throws yii\db\Exception if the transaction is not active

base\Request getScriptFile()

getScriptFile() public method Returns entry script file path. public string getScriptFile ( )return string Entry script file path (processed w/ realpath()) throws yii\base\InvalidConfigException if the entry script file path cannot be determined automatically.

grid\GridView renderTableRow()

renderTableRow() public method Renders a table row with the given data model and key. public string renderTableRow ( $model, $key, $index )$model mixed The data model to be rendered $key mixed The key associated with the data model $index integer The zero-based index of the data model among the model array returned by $dataProvider. return string The rendering result

bootstrap\Nav isItemActive()

isItemActive() protected method Checks whether a menu item is active. This is done by checking if $route and $params match that specified in the url option of the menu item. When the url option of a menu item is specified in terms of an array, its first element is treated as the route for the item and the rest of the elements are the associated parameters. Only when its route and parameters match $route and $params, respectively, will a menu item be considered active. protected boolean is

bootstrap\Tabs renderItems()

renderItems() protected method Renders tab items as specified on $items. protected string renderItems ( )return string The rendering result. throws \yii\bootstrap\InvalidConfigException.

db\ActiveRecord attributes()

attributes() public method Returns the list of all attribute names of the model. The default implementation will return all column names of the table associated with this AR class. public array attributes ( )return array List of attribute names.