authclient\OpenId buildAuthUrlV1()

buildAuthUrlV1() protected method Builds authentication URL for the protocol version 1. protected string buildAuthUrlV1 ( $serverInfo )$serverInfo array OpenID server info. return string Authentication URL.

elasticsearch\Query column()

column() public method Executes the query and returns the first column of the result. public array column ( $field, $db = null )$field string The field to query over $db yii\elasticsearch\Connection The database connection used to execute the query. If this parameter is not given, the elasticsearch application component will be used. return array The first column of the query result. An empty array is returned if the query results in nothing.

db\Command $fetchMode

$fetchMode public property The default fetch mode for this command. See also http://www.php.net/manual/en/function.PDOStatement-setFetchMode.php. public integer $fetchMode = \PDO::FETCH_ASSOC

elasticsearch\BatchQueryResult key()

key() public method Returns the index of the current dataset. This method is required by the interface Iterator. public integer key ( )return integer The index of the current row.

widgets\ActiveForm endField()

endField() public method Ends a form field. This method will return the closing tag of an active form field started by beginField(). public string endField ( )return string The closing tag of the form field. throws yii\base\InvalidCallException if this method is called without a prior beginField() call.

mongodb\file\Download getDocument()

getDocument() public method public array getDocument ( )return array Document to be downloaded. throws yii\base\InvalidConfigException on invalid document configuration.

base\InlineAction runWithParams()

runWithParams() public method Runs this action with the specified parameters. This method is mainly invoked by the controller. public mixed runWithParams ( $params )$params array Action parameters return mixed The result of the action

redis\LuaScriptBuilder buildAll()

buildAll() public method Builds a Lua script for finding a list of records public string buildAll ( $query )$query yii\redis\ActiveQuery The query used to build the script

db\Schema getLastInsertID()

getLastInsertID() public method Returns the ID of the last inserted row or sequence value. See also http://www.php.net/manual/en/function.PDO-lastInsertId.php. public string getLastInsertID ( $sequenceName = '' )$sequenceName string Name of the sequence object (required by some DBMS) return string The row ID of the last row inserted, or the last value retrieved from the sequence object throws yii\base\InvalidCallException if the DB connection is not active

mongodb\QueryBuilder findAndModify()

findAndModify() public method Generates 'find and modify' command. public array findAndModify ( $collectionName, $condition = [], $update = [], $options = [] )$collectionName string Collection name $condition array Filter condition $update array Update criteria $options array List of options in format: optionName => optionValue. return array Command document.