i18n\DbMessageSource $db

$db public property The DB connection object or the application component ID of the DB connection. After the DbMessageSource object is created, if you want to change this property, you should only assign it with a DB connection object. Starting from version 2.0.2, this can also be a configuration array for creating the object. public yii\db\Connection|array|string $db = 'db'

i18n\Formatter $sizeFormatBase

$sizeFormatBase public property The base at which a kilobyte is calculated (1000 or 1024 bytes per kilobyte), used by asSize() and asShortSize(). Defaults to 1024. public integer $sizeFormatBase = 1024

web\Request getAuthUser()

getAuthUser() public method public string|null getAuthUser ( )return string|null The username sent via HTTP authentication, null if the username is not given

web\UploadedFile getInstanceByName()

getInstanceByName() public static method Returns an uploaded file according to the given file input name. The name can be a plain string or a string like an array element (e.g. 'Post[imageFile]', or 'Post[0][imageFile]'). public static null|yii\web\UploadedFile getInstanceByName ( $name )$name string The name of the file input field. return null|yii\web\UploadedFile The instance of the uploaded file. Null is returned if no file is uploaded for the specified name.

sphinx\ColumnSchema $phpType

$phpType public property The PHP type of this column. Possible PHP types include: string, boolean, integer, double. public string $phpType = null

authclient\OAuth2 createToken()

createToken() protected method Creates token from its configuration. protected yii\authclient\OAuthToken createToken ( array $tokenConfig = [] )$tokenConfig array Token configuration. return yii\authclient\OAuthToken Token instance.

web\GroupUrlRule $routePrefix

$routePrefix public property The prefix for the route part of every rule declared in $rules. The prefix and the route will be separated with a slash. If this property is not set, it will take the value of $prefix. public string $routePrefix = null

web\UrlRule createUrl()

createUrl() public method Creates a URL according to the given route and parameters. public string|boolean createUrl ( $manager, $route, $params )$manager yii\web\UrlManager The URL manager $route string The route. It should not have slashes at the beginning or the end. $params array The parameters return string|boolean The created URL, or false if this rule cannot be used for creating this URL.

widgets\Menu $submenuTemplate

$submenuTemplate public property The template used to render a list of sub-menus. In this template, the token {items} will be replaced with the rendered sub-menu items. public string $submenuTemplate = "\n<ul>\n{items}\n</ul>\n"

web\CompositeUrlRule createRules()

createRules() protected abstract method Creates the URL rules that should be contained within this composite rule. protected abstract yii\web\UrlRuleInterface[] createRules ( )return yii\web\UrlRuleInterface[] The URL rules