widgets\ActiveField $parts

$parts public property Different parts of the field (e.g. input, label). This will be used together with $template to generate the final field HTML code. The keys are the token names in $template, while the values are the corresponding HTML code. Valid tokens include {input}, {label} and {error}. Note that you normally don't need to access this property directly as it is maintained by various methods of this class. public array $parts = []

i18n\Formatter $datetimeFormat

$datetimeFormat public property The default format string to be used to format a date and time. This can be "short", "medium", "long", or "full", which represents a preset format of different lengths. It can also be a custom format as specified in the ICU manual. Alternatively this can be a string prefixed with php: representing a format that can be recognized by the PHP date()-function. For example: 'MM/dd/yyyy HH:mm:ss' // date and time in ICU format 'php:m/d/Y H:i:s' // the same date and

i18n\I18N $messageFormatter

$messageFormatter public property The message formatter to be used to format message via ICU message format. public yii\i18n\MessageFormatter getMessageFormatter ( )public void setMessageFormatter ( $value )

captcha\Captcha registerClientScript()

registerClientScript() public method Registers the needed JavaScript. public void registerClientScript ( )

db\TableSchema fixPrimaryKey()

fixPrimaryKey() public method Manually specifies the primary key for this table. public void fixPrimaryKey ( $keys )$keys string|array The primary key (can be composite) throws yii\base\InvalidParamException if the specified key cannot be found in the table.

db\Schema getSchemaNames()

getSchemaNames() public method (available since version 2.0.4) Returns all schema names in the database, except system schemas. public string[] getSchemaNames ( $refresh = false )$refresh boolean Whether to fetch the latest available schema names. If this is false, schema names fetched previously (if available) will be returned. return string[] All schema names in the database, except system schemas.

sphinx\Schema quoteIndexName()

quoteIndexName() public method Quotes a index name for use in a query. If the index name contains schema prefix, the prefix will also be properly quoted. If the index name is already quoted or contains '(' or '{{', then this method will do nothing. See also \yii\sphinx\quoteSimpleTableName. public string quoteIndexName ( $name )$name string Index name return string The properly quoted index name

db\Schema releaseSavepoint()

releaseSavepoint() public method Releases an existing savepoint. public void releaseSavepoint ( $name )$name string The savepoint name

helpers\BaseHtml getInputId()

getInputId() public static method Generates an appropriate input ID for the specified attribute name or expression. This method converts the result getInputName() into a valid input ID. For example, if getInputName() returns Post[content], this method will return post-content. public static string getInputId ( $model, $attribute )$model yii\base\Model The model object $attribute string The attribute name or expression. See getAttributeName() for explanation of attribute expression. re

log\FileTarget export()

export() public method Writes log messages to a file. public void export ( )throws yii\base\InvalidConfigException if unable to open the log file for writing