db\ActiveQueryInterface with()

with() public abstract method Specifies the relations with which this query should be performed. The parameters to this method can be either one or multiple strings, or a single array of relation names and the optional callbacks to customize the relations. A relation name can refer to a relation defined in modelClass or a sub-relation that stands for a relation of a related record. For example, orders.address means the address relation defined in the model class corresponding to the orders

filters\AccessControl $ruleConfig

$ruleConfig public property The default configuration of access rules. Individual rule configurations specified via $rules will take precedence when the same property of the rule is configured. public array $ruleConfig = ['class' => 'yii\filters\AccessRule']

filters\Cors beforeAction()

beforeAction() public method This method is invoked right before an action is to be executed (after all possible filters.) You may override this method to do last-minute preparation for the action. public boolean beforeAction ( $action )$action yii\base\Action The action to be executed. return boolean Whether the action should continue to be executed.

db\ColumnSchemaBuilder $isFirst

$isFirst protected property (available since version 2.0.8) Whether this column is to be inserted at the beginning of the table. protected boolean $isFirst = null

widgets\Spaceless run()

run() public method Marks the end of content to be cleaned from whitespace characters between HTML tags. Stops capturing an output and echoes cleaned result. public void run ( )

grid\GridView $columns

$columns public property Grid column configuration. Each array element represents the configuration for one particular grid column. For example, [ ['class' => SerialColumn::className()], [ 'class' => DataColumn::className(), // this line is optional 'attribute' => 'name', 'format' => 'text', 'label' => 'Name', ], ['class' => CheckboxColumn::className()], ] If a column is of class yii\grid\DataColumn, the "class" element can

filters\Cors prepareAllowHeaders()

prepareAllowHeaders() protected method Handle classic CORS request to avoid duplicate code protected void prepareAllowHeaders ( $type, $requestHeaders, &$responseHeaders )$type string The kind of headers we would handle $requestHeaders array CORS headers request by client $responseHeaders array CORS response headers sent to the client

sphinx\Command alterColumn()

alterColumn() public method Creates a SQL command for changing the definition of a column. public $this alterColumn ( $table, $column, $type )$table string The table whose column is to be changed. The table name will be properly quoted by the method. $column string The name of the column to be changed. The name will be properly quoted by the method. $type string The column type. yii\db\QueryBuilder::getColumnType() will be called to convert the give column type to the physical one. F

filters\VerbFilter beforeAction()

beforeAction() public method public boolean beforeAction ( $event )$event yii\base\ActionEvent throws yii\web\MethodNotAllowedHttpException when the request method is not allowed.

sphinx\MatchExpression andMatch()

andMatch() public method Adds an additional MATCH condition to the existing one. The new condition and the existing one will be joined using the 'AND' (' ') operator. See also: match() orMatch() public $this andMatch ( $condition, $params = [] )$condition string|array|yii\db\Expression The new MATCH condition. Please refer to match() on how to specify this parameter. $params array The parameters (name => value) to be parsed into the query. return $this The expression object itse