helpers\BaseFileHelper localize()

localize() public static method Returns the localized version of a specified file. The searching is based on the specified language code. In particular, a file with the same name will be looked for under the subdirectory whose name is the same as the language code. For example, given the file "path/to/view.php" and language code "zh-CN", the localized file will be looked for as "path/to/zh-CN/view.php". If the file is not found, it will try a fallback with just a language code that is "zh"

widgets\Menu $lastItemCssClass

$lastItemCssClass public property The CSS class that will be assigned to the last item in the main menu or each submenu. Defaults to null, meaning no such CSS class will be assigned. public string $lastItemCssClass = null

debug\components\TimelineDataProvider getTime()

getTime() public method Returns item duration, milliseconds public float getTime ( $model )$model array

sphinx\Query search()

search() public method Executes the query and returns the complete search result including e.g. hits, facets. public array search ( $db = null )$db yii\sphinx\Connection The Sphinx connection used to generate the SQL statement. return array The query results.

data\DataProviderInterface getPagination()

getPagination() public abstract method public abstract yii\data\Pagination getPagination ( )return yii\data\Pagination The pagination object. If this is false, it means the pagination is disabled.

gii\Module $allowedIPs

$allowedIPs public property The list of IPs that are allowed to access this module. Each array element represents a single IP filter which can be either an IP address or an address with wildcard (e.g. 192.168.0.*) to represent a network segment. The default value is ['127.0.0.1', '::1'], which means the module can only be accessed by localhost. public array $allowedIPs = ['127.0.0.1', '::1']

mongodb\debug\ExplainAction $panel

$panel public property Related debug toolbar panel public yii\mongodb\debug\MongoDbPanel $panel = null

data\Sort $attributes

$attributes public property List of attributes that are allowed to be sorted. Its syntax can be described using the following example: [ 'age', 'name' => [ 'asc' => ['first_name' => SORT_ASC, 'last_name' => SORT_ASC], 'desc' => ['first_name' => SORT_DESC, 'last_name' => SORT_DESC], 'default' => SORT_DESC, 'label' => 'Name', ], ] In the above, two attributes are declared: age and name. The age attribute is a simple attri

widgets\ActiveField $template

$template public property The template that is used to arrange the label, the input field, the error message and the hint text. The following tokens will be replaced when render() is called: {label}, {input}, {error} and {hint}. public string $template = "{label}\n{input}\n{hint}\n{error}"

helpers\BaseHtml $attributeOrder

$attributeOrder public static property The preferred order of attributes in a tag. This mainly affects the order of the attributes that are rendered by renderTagAttributes(). public static array $attributeOrder = ['type', 'id', 'class', 'name', 'value', 'href', 'src', 'action', 'method', 'selected', 'checked', 'readonly', 'disabled', 'multiple', 'size', 'maxlength', 'width', 'height', 'rows', 'cols', 'alt', 'title', 'rel', 'media']