db\oci\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 ( $table, $value = null )$table string The name of the table whose primary key sequence will be reset $value array|string The value for the primary key of the next new row inserted. If this is not set, the next new row's primary

rbac\PhpManager getItem()

getItem() public method Returns the named auth item. public yii\rbac\Item getItem ( $name )$name string The auth item name. return yii\rbac\Item The auth item corresponding to the specified name. Null is returned if no such item.

elasticsearch\BatchQueryResult $each

$each public property Whether to return a single row during each iteration. If false, a whole batch of rows will be returned in each iteration. public boolean $each = false

mongodb\Migration save()

save() public method Update the existing database data, otherwise insert this data public \MongoDB\BSON\ObjectID save ( $collection, $data, $options = [] )$collection array|string Collection name. $data array|object Data to be updated/inserted. $options array List of options in format: optionName => optionValue. return \MongoDB\BSON\ObjectID Updated/new record id instance.

web\UrlManager getUrlFromCache()

getUrlFromCache() protected method (available since version 2.0.8) Get URL from internal cache if exists See also createUrl(). protected boolean|string getUrlFromCache ( $cacheKey, $route, $params )$cacheKey string Generated cache key to store data. $route string The route (e.g. site/index). $params array Rule params. return boolean|string The created URL

web\ErrorHandler getTypeUrl()

getTypeUrl() protected method Returns the informational link URL for a given PHP type/class. See also addTypeLinks(). protected string|null getTypeUrl ( $class, $method )$class string The type or class name. $method string|null The method name. return string|null The informational link URL.

web\View registerAssetFiles()

registerAssetFiles() protected method Registers all files provided by an asset bundle including depending bundles files. Removes a bundle from $assetBundles once files are registered. protected void registerAssetFiles ( $name )$name string Name of the bundle to register

sphinx\ActiveRecord getIndexSchema()

getIndexSchema() public static method Returns the schema information of the Sphinx index associated with this AR class. public static yii\sphinx\IndexSchema getIndexSchema ( )return yii\sphinx\IndexSchema The schema information of the Sphinx index associated with this AR class. throws yii\base\InvalidConfigException if the index for the AR class does not exist.

sphinx\QueryBuilder generateBatchInsertReplace()

generateBatchInsertReplace() protected method Generates a batch INSERT/REPLACE SQL statement. protected string generateBatchInsertReplace ( $statement, $index, $columns, $rows, &$params )$statement string Statement ot be generated. $index string The affected index name. $columns array The column data (name => value). $rows array The rows to be batch inserted into the index $params array The binding parameters that will be generated by this method. return string Generated

elasticsearch\Command setMapping()

setMapping() public method See also http://www.elastic.co/guide/en/elasticsearch/reference/current/indices-put-mapping.html. public mixed setMapping ( $index, $type, $mapping, $options = [] )$index string $type string $mapping string|array $options array