authclient\signature\RsaSha1 verify()

verify() public method Verifies given OAuth request. public boolean verify ( $signature, $baseString, $key )$signature string Signature to be verified. $baseString string Signature base string. $key string Signature key. return boolean Success.

elasticsearch\Query addAggregate()

addAggregate() public method Adds an aggregation to this query. Supports nested aggregations. See also https://www.elastic.co/guide/en/elasticsearch/reference/2.3/search-aggregations.html. public $this addAggregate ( $name, $options )$name string The name of the aggregation $options string|array The configuration options for this aggregation. Can be an array or a json string. return $this The query object itself

debug\TimelineAsset $css

$css public property public $css = ['timeline.css']

db\Schema $tableSchemas

$tableSchemas public read-only property The metadata for all tables in the database. Each array element is an instance of yii\db\TableSchema or its child class. public yii\db\TableSchema[] getTableSchemas ( $schema = '', $refresh = false )

Working with Client Scripts

Note: This section is under development. Registering scripts With the yii\web\View object you can register scripts. There are two dedicated methods for it: registerJs() for inline scripts and registerJsFile() for external scripts. Inline scripts are useful for configuration and dynamically generated code. The method for adding these can be used as follows: $this->registerJs("var options = ".json_encode($options).";", View::POS_END, 'my-options'); The first argument is the actual JS code

data\Pagination $offset

$offset public read-only property The offset of the data. This may be used to set the OFFSET value for a SQL statement for fetching the current page of data. public integer getOffset ( )

data\Pagination $params

$params public property Parameters (name => value) that should be used to obtain the current page number and to create new pagination URLs. If not set, all parameters from $_GET will be used instead. In order to add hash to all links use array_merge($_GET, ['#' => 'my-hash']). The array element indexed by $pageParam is considered to be the current page number (defaults to 0); while the element indexed by $pageSizeParam is treated as the page size (defaults to $defaultPageSize). publi

data\Pagination getOffset()

getOffset() public method public integer getOffset ( )return integer The offset of the data. This may be used to set the OFFSET value for a SQL statement for fetching the current page of data.

web\MultipartFormDataParser setUploadFileMaxSize()

setUploadFileMaxSize() public method public void setUploadFileMaxSize ( $uploadFileMaxSize )$uploadFileMaxSize integer Upload file max size in bytes.

db\Schema $lastInsertID

$lastInsertID public read-only property The row ID of the last row inserted, or the last value retrieved from the sequence object public string getLastInsertID ( $sequenceName = '' )