base\Widget $view

$view public property The view object that can be used to render views or view files. public yii\web\View getView ( )public void setView ( $view )

db\oci\Schema findConstraints()

findConstraints() protected method Finds constraints and fills them into TableSchema object passed protected void findConstraints ( $table )$table yii\db\TableSchema

debug\Panel $name

$name public read-only property Name of the panel public string getName ( )

db\Query select()

select() public method Sets the SELECT part of the query. public $this select ( $columns, $option = null )$columns string|array|yii\db\Expression The columns to be selected. Columns can be specified in either a string (e.g. "id, name") or an array (e.g. ['id', 'name']). Columns can be prefixed with table names (e.g. "user.id") and/or contain column aliases (e.g. "user.id AS user_id"). The method will automatically quote the column names unless a column contains some parenthesis (which

db\Query from()

from() public method Sets the FROM part of the query. public $this from ( $tables )$tables string|array The table(s) to be selected from. This can be either a string (e.g. 'user') or an array (e.g. ['user', 'profile']) specifying one or several table names. Table names can contain schema prefixes (e.g. 'public.user') and/or table aliases (e.g. 'user u'). The method will automatically quote the table names unless it contains some parenthesis (which means the table is given as a sub-quer

validators\ImageValidator $notImage

$notImage public property The error message used when the uploaded file is not an image. You may use the following tokens in the message: {attribute}: the attribute name {file}: the uploaded file name public string $notImage = null

db\ActiveRecord delete()

delete() public method Deletes the table row corresponding to this active record. This method performs the following steps in order: call beforeDelete(). If the method returns false, it will skip the rest of the steps; delete the record from the database; call afterDelete(). In the above step 1 and 3, events named EVENT_BEFORE_DELETE and EVENT_AFTER_DELETE will be raised by the corresponding methods. public integer|false delete ( )return integer|false The number of rows deleted, or fal

gii\generators\model\Generator getName()

getName() public method public string getName ( )return string Name of the code generator

authclient\widgets\AuthChoice defaultClients()

defaultClients() protected method Returns default auth clients list. protected yii\authclient\ClientInterface[] defaultClients ( )return yii\authclient\ClientInterface[] Auth clients list.

db\pgsql\QueryBuilder $conditionBuilders

$conditionBuilders protected property Map of query condition to builder methods. These methods are used by buildCondition() to build SQL conditions from array syntax. protected array $conditionBuilders = ['NOT' => 'buildNotCondition', 'AND' => 'buildAndCondition', 'OR' => 'buildAndCondition', 'BETWEEN' => 'buildBetweenCondition', 'NOT BETWEEN' => 'buildBetweenCondition', 'IN' => 'buildInCondition', 'NOT IN' => 'buildInCondition', 'LIKE' => 'buildLikeCondition', 'ILI