authclient\AuthAction getCancelUrl()

getCancelUrl() public method public string getCancelUrl ( )return string Cancel URL.

mongodb\file\ActiveRecord updateInternal()

updateInternal() protected method See also yii\mongodb\file\ActiveRecord::update(). protected void updateInternal ( $attributes = null )$attributes throws yii\db\StaleObjectException

behaviors\SluggableBehavior generateSlug()

generateSlug() protected method This method is called by getValue() to generate the slug. You may override it to customize slug generation. The default implementation calls yii\helpers\Inflector::slug() on the input strings concatenated by dashes (-). protected string generateSlug ( $slugParts )$slugParts array An array of strings that should be concatenated and converted to generate the slug value. return string The conversion result.

widgets\Block init()

init() public method Starts recording a block. public void init ( )

sphinx\ActiveRecord update()

update() public method Saves the changes to this active record into the associated Sphinx index. This method performs the following steps in order: call beforeValidate() when $runValidation is true. If validation fails, it will skip the rest of the steps; call afterValidate() when $runValidation is true. call beforeSave(). If the method returns false, it will skip the rest of the steps; save the record into index. If this fails, it will skip the rest of the steps; call afterSave(); In the a

authclient\InvalidResponseException __construct()

__construct() public method Constructor. public void __construct ( $responseHeaders, $responseBody, $message = null, $code = 0, Exception $previous = null )$responseHeaders array Response headers $responseBody string Response body $message string Error message $code integer Error code $previous Exception The previous exception used for the exception chaining.

elasticsearch\BulkCommand $db

$db public property public yii\elasticsearch\Connection $db = null

elasticsearch\Query minScore()

minScore() public method (available since version 2.0.4) See also http://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-min-score.html. public static minScore ( $minScore )$minScore float Exclude documents which have a _score less than the minimum specified minScore return static The query object itself

helpers\BaseArrayHelper filter()

filter() public static method (available since version 2.0.9) Filters array according to rules specified. For example: $array = [ 'A' => [1, 2], 'B' => [ 'C' => 1, 'D' => 2, ], 'E' => 1, ]; $result = \yii\helpers\ArrayHelper::filter($array, ['A']); // $result will be: // [ // 'A' => [1, 2], // ] $result = \yii\helpers\ArrayHelper::filter($array, ['A', 'B.C']); // $result will be: // [ // 'A' => [1, 2], // 'B' => ['C' =>

faker\FixtureController getGenerator()

getGenerator() public method Returns Faker generator instance. Getter for private property. public \Faker\Generator getGenerator ( )