validators\IpValidator init()

init() public method Initializes the object. This method is invoked at the end of the constructor after the object is initialized with the given configuration. public void init ( )

web\AssetManager getAssetPath()

getAssetPath() public method Returns the actual file path for the specified asset. public string|boolean getAssetPath ( $bundle, $asset )$bundle yii\web\AssetBundle The asset bundle which the asset file belongs to $asset string The asset path. This should be one of the assets listed in \yii\web\js or \yii\web\css. return string|boolean The actual file path, or false if the asset is specified as an absolute URL

base\Model $scenario

$scenario public property The scenario that this model is in. Defaults to SCENARIO_DEFAULT. public string getScenario ( )public void setScenario ( $value )

caching\FileCache flushValues()

flushValues() protected method Deletes all values from cache. This is the implementation of the method declared in the parent class. protected boolean flushValues ( )return boolean Whether the flush operation was successful.

db\sqlite\QueryBuilder resetSequence()

resetSequence() public method Creates a SQL statement for resetting the sequence value of a table's primary key. The sequence will be reset such that the primary key of the next new row inserted will have the specified value or 1. public string resetSequence ( $tableName, $value = null )$tableName string The name of the table whose primary key sequence will be reset $value mixed The value for the primary key of the next new row inserted. If this is not set, the next new row's primary k

db\sqlite\QueryBuilder dropCommentFromColumn()

dropCommentFromColumn() public method (available since version 2.0.8) Builds a SQL command for adding comment to column public string dropCommentFromColumn ( $table, $column )$table string The table whose column is to be commented. The table name will be properly quoted by the method. $column string The name of the column to be commented. The column name will be properly quoted by the method. return string The SQL statement for adding comment on column throws yii\base\NotSupportedEx

db\pgsql\Schema resolveTableNames()

resolveTableNames() protected method Resolves the table name and schema name (if any). protected void resolveTableNames ( $table, $name )$table yii\db\TableSchema The table metadata object $name string The table name

db\oci\Schema getTableSequenceName()

getTableSequenceName() protected method Sequence name of table protected string|null getTableSequenceName ( $tableName )$tableName string return string|null Whether the sequence exists

authclient\WeChat $tokenUrl

$tokenUrl public property Token request URL endpoint. Token request URL endpoint. public string $tokenUrl = 'https://api.weixin.qq.com/sns/oauth2/access_token'

db\pgsql\Schema findTableNames()

findTableNames() protected method Returns all table names in the database. protected array findTableNames ( $schema = '' )$schema string The schema of the tables. Defaults to empty string, meaning the current or default schema. return array All table names in the database. The names have NO schema name prefix.