base\Model load()

load() public method Populates the model with input data. This method provides a convenient shortcut for: if (isset($_POST['FormName'])) { $model->attributes = $_POST['FormName']; if ($model->save()) { // handle success } } which, with load() can be written as: if ($model->load($_POST) && $model->save()) { // handle success } load() gets the 'FormName' from the model's formName() method (which you may override), unless the $formName parameter is

sphinx\Query $showMeta

$showMeta public property Whether to automatically perform 'SHOW META' query against main one. You may set this value to be string or yii\db\Expression instance, in this case its value will be used as 'LIKE' condition for 'SHOW META' statement. You need to use search() method in order to fetch 'meta' results. public boolean|string|yii\db\Expression $showMeta = null

swiftmailer\Message setCc()

setCc() public method Sets the Cc (additional copy receiver) addresses of this message. public $this setCc ( $cc )$cc string|array Copy receiver email address. You may pass an array of addresses if multiple recipients should receive this message. You may also specify receiver name in addition to email address using format: [email => name]. return $this Self reference.

bootstrap\ActiveField $enableError

$enableError public property Whether to render the error. Default is true except for layout inline. public boolean $enableError = true

debug\TimelineAsset $sourcePath

$sourcePath public property public $sourcePath = '@yii/debug/assets'

mongodb\ActiveRecord deleteInternal()

deleteInternal() protected method See also yii\mongodb\ActiveRecord::delete(). protected void deleteInternal ( )throws yii\db\StaleObjectException

i18n\Formatter createNumberFormatter()

createNumberFormatter() protected method Creates a number formatter based on the given type and format. You may override this method to create a number formatter based on patterns. protected \NumberFormatter createNumberFormatter ( $style, $decimals = null, $options = [], $textOptions = [] )$style integer The type of the number formatter. Values: NumberFormatter::DECIMAL, ::CURRENCY, ::PERCENT, ::SCIENTIFIC, ::SPELLOUT, ::ORDINAL ::DURATION, ::PATTERN_RULEBASED, ::DEFAULT_STYLE, ::IGNORE

redis\ActiveQuery scalar()

scalar() public method Returns the query result as a scalar value. The value returned will be the specified attribute in the first record of the query results. public string scalar ( $attribute, $db = null )$attribute string Name of the attribute to select $db yii\redis\Connection The database connection used to execute the query. If this parameter is not given, the db application component will be used. return string The value of the specified attribute in the first record of the qu

i18n\Formatter asInteger()

asInteger() public method Formats the value as an integer number by removing any decimal digits without rounding. public string asInteger ( $value, $options = [], $textOptions = [] )$value mixed The value to be formatted. $options array Optional configuration for the number formatter. This parameter will be merged with $numberFormatterOptions. $textOptions array Optional configuration for the number formatter. This parameter will be merged with $numberFormatterTextOptions. return st

web\UrlManager setBaseUrl()

setBaseUrl() public method Sets the base URL that is used by createUrl() to prepend to created URLs. This is mainly used when $enablePrettyUrl is true and $showScriptName is false. public void setBaseUrl ( $value )$value string The base URL that is used by createUrl() to prepend to created URLs.