mongodb\Query column()

column() public method (available since version 2.1.2) Executes the query and returns the first column of the result. Column _id will be automatically excluded from select fields, if select() is not empty and _id is not selected explicitly. public array column ( $db = null )$db yii\mongodb\Connection The MongoDB connection used to generate the query. If this parameter is not given, the mongodb application component will be used. return array The first column of the query result. An emp

db\ActiveQuery all()

all() public method Executes query and returns all results as an array. public array|yii\db\ActiveRecord[] all ( $db = null )$db yii\db\Connection The DB connection used to create the DB command. If null, the DB connection returned by $modelClass will be used. return array|yii\db\ActiveRecord[] The query results. If the query results in nothing, an empty array will be returned.

debug\panels\MailPanel $summary

$summary public read-only property Content that is displayed at debug toolbar public string getSummary ( )

db\QueryInterface orWhere()

orWhere() public abstract method Adds an additional WHERE condition to the existing one. The new condition and the existing one will be joined using the 'OR' operator. See also: where() andWhere() public abstract $this orWhere ( $condition )$condition string|array The new WHERE condition. Please refer to where() on how to specify this parameter. return $this The query object itself

redis\Cache deleteValue()

deleteValue() protected method Deletes a value with the specified key from cache This method should be implemented by child classes to delete the data from actual cache storage. protected boolean deleteValue ( $key )$key string The key of the value to be deleted return boolean If no error happens during deletion

db\DataReader read()

read() public method Advances the reader to the next row in a result set. public array read ( )return array The current row, false if no more row available

db\Query addParams()

addParams() public method Adds additional parameters to be bound to the query. See also params(). public $this addParams ( $params )$params array List of query parameter values indexed by parameter placeholders. For example, [':name' => 'Dan', ':age' => 31]. return $this The query object itself

web\CookieCollection remove()

remove() public method Removes a cookie. If $removeFromBrowser is true, the cookie will be removed from the browser. In this case, a cookie with outdated expiry will be added to the collection. public void remove ( $cookie, $removeFromBrowser = true )$cookie yii\web\Cookie|string The cookie object or the name of the cookie to be removed. $removeFromBrowser boolean Whether to remove the cookie from browser throws yii\base\InvalidCallException if the cookie collection is read only

authclient\widgets\AuthChoice $clients

$clients public property Auth providers public yii\authclient\ClientInterface[] getClients ( )public void setClients ( array $clients )

grid\GridView $filterUrl

$filterUrl public property The URL for returning the filtering result. yii\helpers\Url::to() will be called to normalize the URL. If not set, the current controller action will be used. When the user makes change to any filter input, the current filtering inputs will be appended as GET parameters to this URL. public string|array $filterUrl = null