twig\ViewRenderer $twigFallbackPaths

$twigFallbackPaths public property (available since version 2.0.5) Twig fallback paths public array $twigFallbackPaths = []

helpers\BaseHtml cssStyleToArray()

cssStyleToArray() public static method Converts a CSS style string into an array representation. The array keys are the CSS property names, and the array values are the corresponding CSS property values. For example, print_r(Html::cssStyleToArray('width: 100px; height: 200px;')); // will display: ['width' => '100px', 'height' => '200px'] public static array cssStyleToArray ( $style )$style string The CSS style string return array The array representation of the CSS style

mongodb\file\Download setDocument()

setDocument() public method Sets data of the document to be downloaded. Document can be specified by its ID, in this case its data will be fetched automatically via extra query. public void setDocument ( $document )$document array|\MongoDB\BSON\ObjectID Document raw data or document ID.

test\BaseActiveFixture unload()

unload() public method Unloads the fixture. This method is called after every test method finishes. You may override this method to perform necessary cleanup work for the fixture. public void unload ( )

web\Response $format

$format public property The response format. This determines how to convert $data into $content when the latter is not set. The value of this property must be one of the keys declared in the $formatters array. By default, the following formats are supported: FORMAT_RAW: the data will be treated as the response content without any conversion. No extra HTTP header will be added. FORMAT_HTML: the data will be treated as the response content without any conversion. The "Content-Type" header w

log\Target filterMessages()

filterMessages() public static method Filters the given messages according to their categories and levels. public static array filterMessages ( $messages, $levels = 0, $categories = [], $except = [] )$messages array Messages to be filtered. The message structure follows that in yii\log\Logger::$messages. $levels integer The message levels to filter by. This is a bitmap of level values. Value 0 means allowing all levels. $categories array The message categories to filter by. If empty,

web\ErrorHandler $errorView

$errorView public property The path of the view file for rendering exceptions without call stack information. public string $errorView = '@yii/views/errorHandler/error.php'

sphinx\QueryBuilder buildSimpleCondition()

buildSimpleCondition() public method Creates an SQL expressions like "column" operator value. public string buildSimpleCondition ( $indexes, $operator, $operands, &$params )$indexes yii\sphinx\IndexSchema[] List of indexes, which affected by query $operator string The operator to use. Anything could be used e.g. >, <=, etc. $operands array Contains two column names. $params array The binding parameters to be populated return string The generated SQL expression throws

mongodb\LogBuilder processData()

processData() protected method Pre-processes the log data before sending it to json_encode(). protected mixed processData ( $data )$data mixed Raw data. return mixed The processed data.

gii\generators\module\Generator requiredTemplates()

requiredTemplates() public method Returns a list of code template files that are required. Derived classes usually should override this method if they require the existence of certain template files. public array requiredTemplates ( )return array List of code template files that are required. They should be file paths relative to $templatePath.