grid\GridView renderColumnGroup()

renderColumnGroup() public method Renders the column group HTML. public boolean|string renderColumnGroup ( )return boolean|string The column group HTML or false if no column group should be rendered.

mongodb\BatchQueryResult $batchSize

$batchSize public property The number of rows to be returned in each batch. public integer $batchSize = 100

caching\WinCache flushValues()

flushValues() protected method Deletes all values from cache. This is the implementation of the method declared in the parent class. protected boolean flushValues ( )return boolean Whether the flush operation was successful.

bootstrap\ActiveField $horizontalCssClasses

$horizontalCssClasses public property CSS grid classes for horizontal layout. This must be an array with these keys: 'offset' the offset grid class to append to the wrapper if no label is rendered 'label' the label grid class 'wrapper' the wrapper grid class 'error' the error grid class 'hint' the hint grid class public null|array $horizontalCssClasses = null

base\Model offsetSet()

offsetSet() public method Sets the element at the specified offset. This method is required by the SPL interface ArrayAccess. It is implicitly called when you use something like $model[$offset] = $item;. public void offsetSet ( $offset, $item )$offset integer The offset to set element $item mixed The element value

db\QueryBuilder createIndex()

createIndex() public method Builds a SQL statement for creating a new index. public string createIndex ( $name, $table, $columns, $unique = false )$name string The name of the index. The name will be properly quoted by the method. $table string The table that the new index will be created for. The table name will be properly quoted by the method. $columns string|array The column(s) that should be included in the index. If there are multiple columns, separate them with commas or use

web\Response $httpStatuses

$httpStatuses public static property List of HTTP status codes and the corresponding texts public static array $httpStatuses = [100 => 'Continue', 101 => 'Switching Protocols', 102 => 'Processing', 118 => 'Connection timed out', 200 => 'OK', 201 => 'Created', 202 => 'Accepted', 203 => 'Non-Authoritative', 204 => 'No Content', 205 => 'Reset Content', 206 => 'Partial Content', 207 => 'Multi-Status', 208 => 'Already Reported', 210 => 'Content Differen

db\Connection getQueryBuilder()

getQueryBuilder() public method Returns the query builder for the current DB connection. public yii\db\QueryBuilder getQueryBuilder ( )return yii\db\QueryBuilder The query builder for the current DB connection.

web\CacheSession destroySession()

destroySession() public method Session destroy handler. Do not call this method directly. public boolean destroySession ( $id )$id string Session ID return boolean Whether session is destroyed successfully

web\AssetBundle register()

register() public static method Registers this asset bundle with a view. public static static register ( $view )$view yii\web\View The view to be registered with return static The registered asset bundle instance