console\controllers\BaseMigrateController addMigrationHistory()

addMigrationHistory() protected abstract method Adds new migration entry to the history. protected abstract void addMigrationHistory ( $version )$version string Migration version name.

authclient\OpenId $axToSregMap

$axToSregMap public property Map of matches between AX and SREG attribute names in format: axAttributeName => sregAttributeName public array $axToSregMap = ['namePerson/friendly' => 'nickname', 'contact/email' => 'email', 'namePerson' => 'fullname', 'birthDate' => 'dob', 'person/gender' => 'gender', 'contact/postalCode/home' => 'postcode', 'contact/country/home' => 'country', 'pref/language' => 'language', 'pref/timezone' => 'timezone']

log\FileTarget $dirMode

$dirMode public property The permission to be set for newly created directories. This value will be used by PHP chmod() function. No umask will be applied. Defaults to 0775, meaning the directory is read-writable by owner and group, but read-only for other users. public integer $dirMode = 509

elasticsearch\Query $timeout

$timeout public property A search timeout, bounding the search request to be executed within the specified time value and bail with the hits accumulated up to that point when expired. Defaults to no timeout. See also: timeout() http://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-body.html#_parameters_5 public integer $timeout = null

gii\Generator validateNewClass()

validateNewClass() public method An inline validator that checks if the attribute value refers to a valid namespaced class name. The validator will check if the directory containing the new class file exist or not. public void validateNewClass ( $attribute, $params )$attribute string The attribute being validated $params array The validation options

elasticsearch\ActiveQuery createCommand()

createCommand() public method Creates a DB command that can be used to execute this query. public yii\elasticsearch\Command createCommand ( $db = null )$db yii\elasticsearch\Connection The DB connection used to create the DB command. If null, the DB connection returned by $modelClass will be used. return yii\elasticsearch\Command The created DB command instance.

web\User $isGuest

$isGuest public read-only property Whether the current user is a guest. public boolean getIsGuest ( )

db\Query addSelect()

addSelect() public method Add more columns to the SELECT part of the query. Note, that if select() has not been specified before, you should include * explicitly if you want to select all remaining columns too: $query->addSelect(["*", "CONCAT(first_name, ' ', last_name) AS full_name"])->one(); See also select(). public $this addSelect ( $columns )$columns string|array|yii\db\Expression The columns to add to the select. See select() for more details about the format of this param

authclient\WeChat defaultNormalizeUserAttributeMap()

defaultNormalizeUserAttributeMap() protected method Returns the default $normalizeUserAttributeMap value. Particular client may override this method in order to provide specific default map. protected array defaultNormalizeUserAttributeMap ( )return array Normalize attribute map.

BaseYii t()

t() public static method Translates a message to the specified language. This is a shortcut method of yii\i18n\I18N::translate(). The translation will be conducted according to the message category and the target language will be used. You can add parameters to a translation message that will be substituted with the corresponding value after translation. The format for this is to use curly brackets around the parameter name as you can see in the following example: $username = 'Alexander'; e