authclient\OAuth1 generateCommonRequestParams()

generateCommonRequestParams() protected method Generate common request params like version, timestamp etc. protected array generateCommonRequestParams ( )return array Common request params.

db\QueryInterface andFilterWhere()

andFilterWhere() public abstract method Adds an additional WHERE condition to the existing one ignoring empty parameters. The new condition and the existing one will be joined using the 'AND' operator. See also: filterWhere() orFilterWhere() public abstract $this andFilterWhere ( array $condition )$condition array The new WHERE condition. Please refer to where() on how to specify this parameter. return $this The query object itself

db\ActiveRecordInterface populateRelation()

populateRelation() public abstract method (available since version 2.0.8) Populates the named relation with the related records. Note that this method does not check if the relation exists or not. public abstract void populateRelation ( $name, $records )$name string The relation name, e.g. orders for a relation defined via getOrders() method (case-sensitive). $records yii\db\ActiveRecordInterface|array|null The related records to be populated into the relation.

elasticsearch\ActiveRecord getHighlight()

getHighlight() public method public array|null getHighlight ( )return array|null A list of arrays with highlighted excerpts indexed by field names.

behaviors\AttributeTypecastBehavior $typecastAfterValidate

$typecastAfterValidate public property Whether to perform typecasting after owner model validation. Note that typecasting will be performed only if validation was successful, e.g. owner model has no errors. Note that changing this option value will have no effect after this behavior has been attached to the model. public boolean $typecastAfterValidate = true

gii\generators\extension\Generator getDescription()

getDescription() public method public string getDescription ( )return string The detailed description of the generator.

widgets\ActiveForm $validateOnBlur

$validateOnBlur public property Whether to perform validation when an input field loses focus. If yii\widgets\ActiveField::$validateOnBlur is set, its value will take precedence for that input field. public boolean $validateOnBlur = true

log\Logger getElapsedTime()

getElapsedTime() public method Returns the total elapsed time since the start of the current request. This method calculates the difference between now and the timestamp defined by constant YII_BEGIN_TIME which is evaluated at the beginning of yii\BaseYii class file. public float getElapsedTime ( )return float The total elapsed time in seconds for current request.

rbac\BaseManager getRole()

getRole() public method Returns the named role. public null|yii\rbac\Role getRole ( $name )$name string The role name. return null|yii\rbac\Role The role corresponding to the specified name. Null is returned if no such role.

db\QueryBuilder renameTable()

renameTable() public method Builds a SQL statement for renaming a DB table. public string renameTable ( $oldName, $newName )$oldName string The table to be renamed. The name will be properly quoted by the method. $newName string The new table name. The name will be properly quoted by the method. return string The SQL statement for renaming a DB table.