debug\models\search\Debug $ajax

$ajax public property Ajax attribute input search value public integer $ajax = null

helpers\BaseUrl previous()

previous() public static method Returns the URL previously remembered. See also remember(). public static string|null previous ( $name = null )$name string The named associated with the URL that was remembered previously. If not set, it will use yii\web\User::$returnUrlParam. return string|null The URL previously remembered. Null is returned if no URL was remembered with the given name.

db\pgsql\QueryBuilder $typeMap

$typeMap public property Mapping from abstract column types (keys) to physical column types (values). public array $typeMap = [\yii\db\pgsql\Schema::TYPE_PK => 'serial NOT NULL PRIMARY KEY', \yii\db\pgsql\Schema::TYPE_UPK => 'serial NOT NULL PRIMARY KEY', \yii\db\pgsql\Schema::TYPE_BIGPK => 'bigserial NOT NULL PRIMARY KEY', \yii\db\pgsql\Schema::TYPE_UBIGPK => 'bigserial NOT NULL PRIMARY KEY', \yii\db\pgsql\Schema::TYPE_CHAR => 'char(1)', \yii\db\pgsql\Schema::TYPE_STRING =&

mongodb\Connection getCollection()

getCollection() public method Returns the MongoDB collection with the given name. public yii\mongodb\Collection getCollection ( $name, $refresh = false )$name string|array Collection name. If string considered as the name of the collection inside the default database. If array - first element considered as the name of the database, second - as name of collection inside that database $refresh boolean Whether to reload the collection instance even if it is found in the cache. return y

console\controllers\AssetController $defaultAction

$defaultAction public property Controller default action ID. public string $defaultAction = 'compress'

mongodb\Connection EVENT_AFTER_OPEN

EVENT_AFTER_OPEN event of type \yii\mongodb\Event An event that is triggered after a DB connection is established

mongodb\ActiveFixture $collectionName

$collectionName public property The collection name that this fixture is about. If this property is not set, the collection name will be determined via $modelClass. See also yii\mongodb\Connection::getCollection(). public string|array $collectionName = null

elasticsearch\Command search()

search() public method Sends a request to the _search API and returns the result public mixed search ( $options = [] )$options array

gii\TypeAheadAsset $js

$js public property public $js = ['typeahead.bundle.js']

db\Command renameColumn()

renameColumn() public method Creates a SQL command for renaming a column. public $this renameColumn ( $table, $oldName, $newName )$table string The table whose column is to be renamed. The name will be properly quoted by the method. $oldName string The old name of the column. The name will be properly quoted by the method. $newName string The new name of the column. The name will be properly quoted by the method. return $this The command object itself