base\View renderDynamic()

renderDynamic() public method Renders dynamic content returned by the given PHP statements. This method is mainly used together with content caching (fragment caching and page caching) when some portions of the content (called dynamic content) should not be cached. The dynamic content must be returned by some PHP statements. public string renderDynamic ( $statements )$statements string The PHP statements for generating the dynamic content. return string The placeholder of the dynamic c

db\Migration alterColumn()

alterColumn() public method Builds and executes a SQL statement for changing the definition of a column. public void alterColumn ( $table, $column, $type )$table string The table whose column is to be changed. The table name will be properly quoted by the method. $column string The name of the column to be changed. The name will be properly quoted by the method. $type string The new column type. The yii\db\QueryBuilder::getColumnType() method will be invoked to convert abstract colum

bootstrap\Carousel renderItems()

renderItems() public method Renders carousel items as specified on $items. public string renderItems ( )return string The rendering result

widgets\ActiveForm $enableAjaxValidation

$enableAjaxValidation public property Whether to enable AJAX-based data validation. If yii\widgets\ActiveField::$enableAjaxValidation is set, its value will take precedence for that input field. public boolean $enableAjaxValidation = false

caching\Cache getValues()

getValues() protected method Retrieves multiple values from cache with the specified keys. The default implementation calls getValue() multiple times to retrieve the cached values one by one. If the underlying cache storage supports multiget, this method should be overridden to exploit that feature. protected array getValues ( $keys )$keys array A list of keys identifying the cached values return array A list of cached values indexed by the keys

helpers\BaseHtml $dataAttributes

$dataAttributes public static property (available since version 2.0.3) List of tag attributes that should be specially handled when their values are of array type. In particular, if the value of the data attribute is ['name' => 'xyz', 'age' => 13], two attributes will be generated instead of one: data-name="xyz" data-age="13". public static array $dataAttributes = ['data', 'data-ng', 'ng']

db\mssql\Schema quoteSimpleTableName()

quoteSimpleTableName() public method Quotes a table name for use in a query. A simple table name has no schema prefix. public string quoteSimpleTableName ( $name )$name string Table name. return string The properly quoted table name.

test\FixtureTrait unloadFixtures()

unloadFixtures() public method Unloads the specified fixtures. This method will call yii\test\Fixture::unload() for every fixture object. public void unloadFixtures ( $fixtures = null )$fixtures yii\test\Fixture[] The fixtures to be loaded. If this parameter is not specified, the return value of getFixtures() will be used.

authclient\OpenId $authUrl

$authUrl public property Authentication base URL, which should be used to compose actual authentication URL by buildAuthUrl() method. public string $authUrl = null

redis\Connection open()

open() public method Establishes a DB connection. It does nothing if a DB connection has already been established. public void open ( )throws yii\db\Exception if connection fails