validators\IpValidator clientValidateAttribute()

clientValidateAttribute() public method Returns the JavaScript needed for performing client-side validation. You may override this method to return the JavaScript validation code if the validator can support client-side validation. The following JavaScript variables are predefined and can be used in the validation code: attribute: an object describing the the attribute being validated. value: the value being validated. messages: an array used to hold the validation error messages for the

authclient\BaseOAuth $accessToken

$accessToken public property public yii\authclient\OAuthToken getAccessToken ( )public void setAccessToken ( $token )

web\Request setScriptFile()

setScriptFile() public method Sets the entry script file path. The entry script file path normally can be obtained from $_SERVER['SCRIPT_FILENAME']. If your server configuration does not return the correct value, you may configure this property to make it right. public void setScriptFile ( $value )$value string The entry script file path.

web\JsExpression __construct()

__construct() public method Constructor. public void __construct ( $expression, $config = [] )$expression string The JavaScript expression represented by this object $config array Additional configurations for this object

db\oci\Schema loadTableSchema()

loadTableSchema() public method Loads the metadata for the specified table. public null|yii\db\TableSchema loadTableSchema ( $name )$name string Table name return null|yii\db\TableSchema DBMS-dependent table metadata, null if the table does not exist.

helpers\BaseHtml a()

a() public static method Generates a hyperlink tag. See also yii\helpers\Url::to(). public static string a ( $text, $url = null, $options = [] )$text string Link body. It will NOT be HTML-encoded. Therefore you can pass in HTML code such as an image tag. If this is coming from end users, you should consider encode() it to prevent XSS attacks. $url array|string|null The URL for the hyperlink tag. This parameter will be processed by yii\helpers\Url::to() and will be used for the "href"

db\mssql\Schema findUniqueIndexes()

findUniqueIndexes() public method (available since version 2.0.4) Returns all unique indexes for the given table. Each array element is of the following structure: [ 'IndexName1' => ['col1' [, ...]], 'IndexName2' => ['col2' [, ...]], ] public array findUniqueIndexes ( $table )$table yii\db\mssql\TableSchema The table metadata return array All unique indexes for the given table.

db\SchemaBuilderTrait date()

date() public method (available since version 2.0.6) Creates a date column. public yii\db\ColumnSchemaBuilder date ( )return yii\db\ColumnSchemaBuilder The column instance which can be further customized.

filters\auth\AuthMethod $optional

$optional public property (available since version 2.0.7) List of action IDs that this filter will be applied to, but auth failure will not lead to error. It may be used for actions, that are allowed for public, but return some additional data for authenticated users. Defaults to empty, meaning authentication is not optional for any action. Since version 2.0.10 action IDs can be specified as wildcards, e.g. site/*. See also isOptional(). public array $optional = []

base\DynamicModel __get()

__get() public method Returns the value of a component property. This method will check in the following order and act accordingly: a property defined by a getter: return the getter result a property of a behavior: return the behavior property value Do not call this method directly as it is a PHP magic method that will be implicitly called when executing $value = $component->property;. public mixed __get ( $name )$name string The property name return mixed The property value or the