db\pgsql\Schema findConstraints()

findConstraints() protected method Collects the foreign key column details for the given table. protected void findConstraints ( $table )$table yii\db\TableSchema The table metadata

helpers\BaseArrayHelper htmlDecode()

htmlDecode() public static method Decodes HTML entities into the corresponding characters in an array of strings. Only array values will be decoded by default. If a value is an array, this method will also decode it recursively. Only string values will be decoded. See also http://www.php.net/manual/en/function.htmlspecialchars-decode.php. public static array htmlDecode ( $data, $valuesOnly = true )$data array Data to be decoded $valuesOnly boolean Whether to decode array values only. I

authclient\WeChat defaultReturnUrl()

defaultReturnUrl() protected method Composes default $returnUrl value. protected string defaultReturnUrl ( )return string Return URL.

debug\panels\DbPanel 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 ( )

db\SchemaBuilderTrait timestamp()

timestamp() public method (available since version 2.0.6) Creates a timestamp column. public yii\db\ColumnSchemaBuilder timestamp ( $precision = null )$precision integer Column value precision. First parameter passed to the column type, e.g. TIMESTAMP(precision). This parameter will be ignored if not supported by the DBMS. return yii\db\ColumnSchemaBuilder The column instance which can be further customized.

elasticsearch\Query $filter

$filter public property The filter part of this search query. This is an array or json string that follows the format of the elasticsearch Query DSL. public array|string $filter = null

data\ActiveDataProvider prepareTotalCount()

prepareTotalCount() protected method Returns a value indicating the total number of data models in this data provider. protected integer prepareTotalCount ( )return integer Total number of data models in this data provider.

authclient\widgets\AuthChoiceAsset $sourcePath

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

web\Request getAbsoluteUrl()

getAbsoluteUrl() public method Returns the currently requested absolute URL. This is a shortcut to the concatenation of $hostInfo and $url. public string getAbsoluteUrl ( )return string The currently requested absolute URL.

elasticsearch\ActiveRecord find()

find() public static method Creates an \yii\elasticsearch\ActiveQueryInterface instance for query purpose. The returned \yii\elasticsearch\ActiveQueryInterface instance can be further customized by calling methods defined in \yii\elasticsearch\ActiveQueryInterface before one() or all() is called to return populated ActiveRecord instances. For example, // find the customer whose ID is 1 $customer = Customer::find()->where(['id' => 1])->one(); // find all active customers and order