filters\AccessRule matchVerb()

matchVerb() protected method protected boolean matchVerb ( $verb )$verb string The request method. return boolean Whether the rule applies to the request

authclient\AuthAction $clientIdGetParamName

$clientIdGetParamName public property Name of the GET param, which is used to passed auth client id to this action. Note: watch for the naming, make sure you do not choose name used in some auth protocol. public string $clientIdGetParamName = 'authclient'

grid\DataColumn $format

$format public property In which format should the value of each data model be displayed as (e.g. "raw", "text", "html", ['date', 'php:Y-m-d']). Supported formats are determined by the formatter used by the yii\grid\GridView. Default format is "text" which will format the value as an HTML-encoded plain text when yii\i18n\Formatter is used as the formatter of the GridView. public string|array $format = 'text'

mongodb\file\Collection createDownload()

createDownload() public method (available since version 2.1) Creates download command. public yii\mongodb\file\Download createDownload ( $document )$document array|\MongoDB\BSON\ObjectID File document ot be downloaded. return yii\mongodb\file\Download File download instance.

mongodb\file\Download toStream()

toStream() public method Saves file into the given stream. public integer toStream ( $stream )$stream resource Stream, which file should be saved to. return integer Number of written bytes.

web\View $linkTags

$linkTags public property The registered link tags. See also registerLinkTag(). public array $linkTags = null

authclient\signature\BaseMethod 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.

widgets\Menu isItemActive()

isItemActive() protected method Checks whether a menu item is active. This is done by checking if $route and $params match that specified in the url option of the menu item. When the url option of a menu item is specified in terms of an array, its first element is treated as the route for the item and the rest of the elements are the associated parameters. Only when its route and parameters match $route and $params, respectively, will a menu item be considered active. protected boolean is

db\mssql\QueryBuilder checkIntegrity()

checkIntegrity() public method Builds a SQL statement for enabling or disabling integrity check. public string checkIntegrity ( $check = true, $schema = '', $table = '' )$check boolean Whether to turn on or off the integrity check. $schema string The schema of the tables. Defaults to empty string, meaning the current or default schema. $table string The table name. Defaults to empty string, meaning that no table will be changed. return string The SQL statement for checking integrit

db\oci\QueryBuilder buildOrderByAndLimit()

buildOrderByAndLimit() public method Builds the ORDER BY and LIMIT/OFFSET clauses and appends them to the given SQL. public string buildOrderByAndLimit ( $sql, $orderBy, $limit, $offset )$sql string The existing SQL (without ORDER BY/LIMIT/OFFSET) $orderBy array The order by columns. See \yii\db\oci\Query::orderBy for more details on how to specify this parameter. $limit integer The limit number. See \yii\db\oci\Query::limit for more details. $offset integer The offset number. See