sphinx\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

console\controllers\MessageController $translator

$translator public property The name of the function for translating messages. Defaults to 'Yii::t'. This is used as a mark to find the messages to be translated. You may use a string for single function name or an array for multiple function names. public string $translator = 'Yii::t'

redis\ActiveQuery all()

all() public method Executes the query and returns all results as an array. public array|yii\redis\ActiveRecord[] all ( $db = null )$db yii\redis\Connection The database connection used to execute the query. If this parameter is not given, the db application component will be used. return array|yii\redis\ActiveRecord[] The query results. If the query results in nothing, an empty array will be returned.

db\pgsql\QueryBuilder insert()

insert() public method Creates an INSERT SQL statement. For example, $sql = $queryBuilder->insert('user', [ 'name' => 'Sam', 'age' => 30, ], $params); The method will properly escape the table and column names. public string insert ( $table, $columns, &$params )$table string The table that new rows will be inserted into. $columns array The column data (name => value) to be inserted into the table. $params array The binding parameters that will be generated by

helpers\BaseHtml activeTextInput()

activeTextInput() public static method Generates a text input tag for the given model attribute. This method will generate the "name" and "value" tag attributes automatically for the model attribute unless they are explicitly specified in $options. public static string activeTextInput ( $model, $attribute, $options = [] )$model yii\base\Model The model object $attribute string The attribute name or expression. See getAttributeName() for the format about attribute expression. $options

validators\FileValidator $tooSmall

$tooSmall public property The error message used when the uploaded file is too small. You may use the following tokens in the message: {attribute}: the attribute name {file}: the uploaded file name {limit}: the value of $minSize {formattedLimit}: the value of $minSize formatted with [[\yii\i18n\Formatter::asShortSize()|Formatter::asShortSize()] public string $tooSmall = null

web\Response $isRedirection

$isRedirection public read-only property Whether this response is a redirection public boolean getIsRedirection ( )

db\ActiveRecordInterface getIsNewRecord()

getIsNewRecord() public abstract method Returns a value indicating whether the current record is new (not saved in the database). public abstract boolean getIsNewRecord ( )return boolean Whether the record is new and should be inserted when calling save().

db\pgsql\QueryBuilder resetSequence()

resetSequence() public method Creates a SQL statement 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 string resetSequence ( $tableName, $value = null )$tableName 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 k

widgets\FragmentCache $cache

$cache public property The cache object or the application component ID of the cache object. After the FragmentCache object is created, if you want to change this property, you should only assign it with a cache object. Starting from version 2.0.2, this can also be a configuration array for creating the object. public yii\caching\Cache|array|string $cache = 'cache'