bootstrap\ActiveField renderLabelParts()

renderLabelParts() protected method protected void renderLabelParts ( $label = null, $options = [] )$label string|null The label or null to use model label $options array The tag options

web\Request $acceptableLanguages

$acceptableLanguages public property The languages ordered by the preference level. The first element represents the most preferred language. public array getAcceptableLanguages ( )public void setAcceptableLanguages ( $value )

jui\Tabs renderItems()

renderItems() protected method Renders tab items as specified on $items. protected string renderItems ( )return string The rendering result. throws \yii\jui\InvalidConfigException.

authclient\clients\LinkedIn defaultTitle()

defaultTitle() protected method Generates service title. protected string defaultTitle ( )return string Service title.

db\Schema quoteColumnName()

quoteColumnName() public method Quotes a column name for use in a query. If the column name contains prefix, the prefix will also be properly quoted. If the column name is already quoted or contains '(', '[[' or '{{', then this method will do nothing. See also quoteSimpleColumnName(). public string quoteColumnName ( $name )$name string Column name return string The properly quoted column name

di\Instance ensure()

ensure() public static method Resolves the specified reference into the actual object and makes sure it is of the specified type. The reference may be specified as a string or an Instance object. If the former, it will be treated as a component ID, a class/interface name or an alias, depending on the container type. If you do not specify a container, the method will first try Yii::$app followed by Yii::$container. For example, use yii\db\Connection; // returns Yii::$app->db $db = Instan

db\Schema findUniqueIndexes()

findUniqueIndexes() public method Returns all unique indexes for the given table. Each array element is of the following structure: [ 'IndexName1' => ['col1' [, ...]], 'IndexName2' => ['col2' [, ...]], ] This method should be overridden by child classes in order to support this feature because the default implementation simply throws an exception public array findUniqueIndexes ( $table )$table yii\db\TableSchema The table metadata return array All unique indexes for the given

validators\DateValidator $format

$format public property The date format that the value being validated should follow. This can be a date time pattern as described in the ICU manual. Alternatively this can be a string prefixed with php: representing a format that can be recognized by the PHP Datetime class. Please refer to http://php.net/manual/en/datetime.createfromformat.php on supported formats. If this property is not set, the default value will be obtained from Yii::$app->formatter->dateFormat, see yii\i18n\Form

web\User $authTimeoutParam

$authTimeoutParam public property The session variable name used to store the value of expiration timestamp of the authenticated state. This is used when $authTimeout is set. public string $authTimeoutParam = '__expire'

db\mssql\QueryBuilder getAllColumnNames()

getAllColumnNames() protected method Returns an array of column names given model name protected array|null getAllColumnNames ( $modelClass = null )$modelClass string Name of the model class return array|null Array of column names