authclient\clients\YandexOAuth initUserAttributes()

initUserAttributes() protected method Initializes authenticated user attributes. protected array initUserAttributes ( )return array Auth user attributes.

mongodb\Collection update()

update() public method Updates the rows, which matches given criteria by given data. Note: for "multi" mode Mongo requires explicit strategy "$set" or "$inc" to be specified for the "newData". If no strategy is passed "$set" will be used. public integer|boolean update ( $condition, $newData, $options = [] )$condition array Description of the objects to update. $newData array The object with which to update the matching records. $options array List of options in format: optionName =&g

db\mssql\Schema resolveTableNames()

resolveTableNames() protected method Resolves the table name and schema name (if any). protected void resolveTableNames ( $table, $name )$table yii\db\mssql\TableSchema The table metadata object $name string The table name

mongodb\file\StreamWrapper stream_eof()

stream_eof() public method Tests for end-of-file on a file pointer. This method is called in response to feof(). See also \yii\mongodb\file\feof(). public boolean stream_eof ( )return boolean true if the read/write position is at the end of the stream and if no more data is available to be read, or false otherwise.

base\Application run()

run() public method Runs the application. This is the main entrance of an application. public integer run ( )return integer The exit status (0 means normal, non-zero values mean abnormal)

mongodb\QueryBuilder buildRegexCondition()

buildRegexCondition() public method Creates a Mongo regular expression condition. public array buildRegexCondition ( $operator, $operands )$operator string The operator to use $operands array The first operand is the column name. The second operand is a single value that column value should be compared with. return array The generated Mongo condition. throws yii\base\InvalidParamException if wrong number of operands have been given.

mail\BaseMailer sendMultiple()

sendMultiple() public method Sends multiple messages at once. The default implementation simply calls send() multiple times. Child classes may override this method to implement more efficient way of sending multiple messages. public integer sendMultiple ( array $messages )$messages array List of email messages, which should be sent. return integer Number of messages that are successfully sent.

gii\generators\module\Generator getControllerNamespace()

getControllerNamespace() public method public string getControllerNamespace ( )return string The controller namespace of the module.

db\Connection quoteColumnName()

quoteColumnName() public method Quotes a column name for use in a query. If the column name contains prefix, the prefix will also be properly quoted. If the column name is already quoted or contains special characters including '(', '[[' and '{{', then this method will do nothing. public string quoteColumnName ( $name )$name string Column name return string The properly quoted column name

db\Query distinct()

distinct() public method Sets the value indicating whether to SELECT DISTINCT or not. public $this distinct ( $value = true )$value boolean Whether to SELECT DISTINCT or not. return $this The query object itself