authclient\clients\YandexOpenId defaultName()

defaultName() protected method Generates service name. protected string defaultName ( )return string Service name.

db\ActiveRecordInterface getIsNewRecord()

getIsNewRecord() public abstract method Returns a value indicating whether the current record is new (not saved in the database). public abstract boolean getIsNewRecord ( )return boolean Whether the record is new and should be inserted when calling save().

web\Request setScriptUrl()

setScriptUrl() public method Sets the relative URL for the application entry script. This setter is provided in case the entry script URL cannot be determined on certain Web servers. public void setScriptUrl ( $value )$value string The relative URL for the application entry script.

helpers\BaseHtml removeCssStyle()

removeCssStyle() public static method Removes the specified CSS style from the HTML options. For example, Html::removeCssStyle($options, ['width', 'height']); See also addCssStyle(). public static void removeCssStyle ( &$options, $properties )$options array The HTML options to be modified. $properties string|array The CSS properties to be removed. You may use a string if you are removing a single property.

authclient\clients\GitHub $apiBaseUrl

$apiBaseUrl public property API base URL. API base URL. public string $apiBaseUrl = 'https://api.github.com'

validators\IpValidator validateValue()

validateValue() protected method Validates a value. A validator class can implement this method to support data validation out of the context of a data model. protected array|null validateValue ( $value )$value mixed The data value to be validated. return array|null The error message and the parameters to be inserted into the error message. Null should be returned if the data is valid. throws yii\base\NotSupportedException if the validator does not supporting data validation withou

mongodb\file\ActiveQuery populate()

populate() public method Converts the raw query results into the format as specified by this query. This method is internally used to convert the data fetched from MongoDB into the format as required by this query. public array populate ( $rows )$rows array The raw query result from MongoDB return array The converted query result

validators\IpValidator $hasSubnet

$hasSubnet public property User-defined error message is used when validation fails due to $subnet is false, but CIDR prefix is present. You may use the following placeholders in the message: {attribute}: the label of the attribute being validated {value}: the value of the attribute being validated See also $subnet. public string $hasSubnet = null

validators\CompareValidator $operator

$operator public property The operator for comparison. The following operators are supported: ==: check if two values are equal. The comparison is done is non-strict mode. ===: check if two values are equal. The comparison is done is strict mode. !=: check if two values are NOT equal. The comparison is done is non-strict mode. !==: check if two values are NOT equal. The comparison is done is strict mode. >: check if value being validated is greater than the value being compared with

console\controllers\HelpController getSubCommandHelp()

getSubCommandHelp() protected method Displays the detailed information of a command action. protected void getSubCommandHelp ( $controller, $actionID )$controller yii\console\Controller The controller instance $actionID string Action ID throws yii\console\Exception if the action does not exist