log\Target $logVars

$logVars public property List of the PHP predefined variables that should be logged in a message. Note that a variable must be accessible via $GLOBALS. Otherwise it won't be logged. Defaults to ['_GET', '_POST', '_FILES', '_COOKIE', '_SESSION', '_SERVER']. Since version 2.0.9 additional syntax can be used: Each element could be specified as one of the following: var - var will be logged. var.key - only var[key] key will be logged. !var.key - var[key] key will be excluded. See also yii\he

log\FileTarget rotateFiles()

rotateFiles() protected method Rotates log files. protected void rotateFiles ( )

elasticsearch\Command closeIndex()

closeIndex() public method See also http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-open-close.html. public mixed closeIndex ( $index )$index

base\Application registerErrorHandler()

registerErrorHandler() protected method Registers the errorHandler component as a PHP error handler. protected void registerErrorHandler ( &$config )$config array Application config

authclient\signature\HmacSha1 generateSignature()

generateSignature() public method Generates OAuth request signature. public string generateSignature ( $baseString, $key )$baseString string Signature base string. $key string Signature key. return string Signature string.

base\View beginPage()

beginPage() public method Marks the beginning of a page. public void beginPage ( )

mail\BaseMailer $view

$view public property View instance or its array configuration that will be used to render message bodies. public yii\web\View getView ( )public void setView ( $view )

gii\generators\form\Generator $viewName

$viewName public property public $viewName = null

db\pgsql\QueryBuilder insert()

insert() public method Creates an INSERT SQL statement. For example, $sql = $queryBuilder->insert('user', [ 'name' => 'Sam', 'age' => 30, ], $params); The method will properly escape the table and column names. public string insert ( $table, $columns, &$params )$table string The table that new rows will be inserted into. $columns array The column data (name => value) to be inserted into the table. $params array The binding parameters that will be generated by

i18n\MessageSource translate()

translate() public method Translates a message to the specified language. Note that unless $forceTranslation is true, if the target language is the same as the source language, the message will NOT be translated. If a translation is not found, a missingTranslation event will be triggered. public string|boolean translate ( $category, $message, $language )$category string The message category $message string The message to be translated $language string The target language return str