elasticsearch\Command deleteAllIndexes()

deleteAllIndexes() public method Deletes all indexes See also http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-delete-index.html. public mixed deleteAllIndexes ( )

db\BaseActiveRecord getRelatedRecords()

getRelatedRecords() public method Returns all populated related records. See also getRelation(). public array getRelatedRecords ( )return array An array of related records indexed by relation names.

rest\UpdateAction run()

run() public method Updates an existing model. public yii\db\ActiveRecordInterface run ( $id )$id string The primary key of the model. return yii\db\ActiveRecordInterface The model being updated throws yii\web\ServerErrorHttpException if there is any error when updating the model

helpers\BaseConsole xtermFgColor()

xtermFgColor() public static method Returns the ansi format code for xterm foreground color. You can pass the return value of this to one of the formatting methods: ansiFormat(), ansiFormatCode(), beginAnsiFormat() See also http://en.wikipedia.org/wiki/Talk:ANSI_escape_code#xterm-256colors. public static string xtermFgColor ( $colorCode )$colorCode integer Xterm color code

authclient\OAuthToken setParam()

setParam() public method Sets param by name. public void setParam ( $name, $value )$name string Param name. $value mixed Param value,

sphinx\gii\model\Generator validateDb()

validateDb() public method Validates the $db attribute. public void validateDb ( )

db\BaseActiveRecord update()

update() public method Saves the changes to this active record into the associated database table. This method performs the following steps in order: call beforeValidate() when $runValidation is true. If beforeValidate() returns false, the rest of the steps will be skipped; call afterValidate() when $runValidation is true. If validation failed, the rest of the steps will be skipped; call beforeSave(). If beforeSave() returns false, the rest of the steps will be skipped; save the record into

sphinx\Query match()

match() public method Sets the fulltext query text. This text will be composed into MATCH operator inside the WHERE clause. Note: this value will be processed by yii\sphinx\Connection::escapeMatchValue(), if you need to compose complex match condition use yii\db\Expression: $query = new Query(); $query->from('my_index') ->match(new Expression(':match', ['match' => '@(content) ' . Yii::$app->sphinx->escapeMatchValue($matchValue)])) ->all(); public $this match ( $

sphinx\IndexSchema getColumnNames()

getColumnNames() public method Returns the names of all columns in this table. public array getColumnNames ( )return array List of column names

bootstrap\ActiveField $enableError

$enableError public property Whether to render the error. Default is true except for layout inline. public boolean $enableError = true