widgets\LinkPager $nextPageCssClass

$nextPageCssClass public property The CSS class for the "next" page button. public string $nextPageCssClass = 'next'

widgets\LinkPager $disabledPageCssClass

$disabledPageCssClass public property The CSS class for the disabled page buttons. public string $disabledPageCssClass = 'disabled'

web\View beginBody()

beginBody() public method Marks the beginning of an HTML body section. public void beginBody ( )

sphinx\Command $db

$db public property The Sphinx connection that this command is associated with. public yii\sphinx\Connection $db = null

twig\ViewRenderer $uses

$uses public property Namespaces and classes to import. Example: [ 'yii\bootstrap', 'app\assets', \yii\bootstrap\NavBar::className(), ] public array $uses = []

twig\ViewRenderer addFunctions()

addFunctions() public method Adds custom functions public void addFunctions ( $functions )$functions array @see self::$functions

console\controllers\MigrateController generateTableName()

generateTableName() protected method (available since version 2.0.8) If useTablePrefix equals true, then the table name will contain the prefix format. protected string generateTableName ( $tableName )$tableName string The table name to generate.

test\DbFixture init()

init() public method Initializes the object. This method is invoked at the end of the constructor after the object is initialized with the given configuration. public void init ( )

widgets\BaseListView renderItems()

renderItems() public abstract method Renders the data models. public abstract string renderItems ( )return string The rendering result.

console\controllers\MigrateController $fields

$fields public property (available since version 2.0.7) Column definition strings used for creating migration code. The format of each definition is COLUMN_NAME:COLUMN_TYPE:COLUMN_DECORATOR. Delimiter is ,. For example, --fields="name:string(12):notNull:unique" produces a string column of size 12 which is not null and unique values. Note: primary key is added automatically and is named id by default. If you want to use another name you may specify it explicitly like --fields="id_key:primary