db\ActiveQuery orOnCondition()

orOnCondition() public method Adds an additional ON condition to the existing one. The new condition and the existing one will be joined using the 'OR' operator. See also: onCondition() andOnCondition() public $this orOnCondition ( $condition, $params = [] )$condition string|array The new ON condition. Please refer to where() on how to specify this parameter. $params array The parameters (name => value) to be bound to the query. return $this The query object itself

authclient\ClientInterface getTitle()

getTitle() public abstract method public abstract string getTitle ( )return string Service title.

db\ActiveQueryInterface with()

with() public abstract method Specifies the relations with which this query should be performed. The parameters to this method can be either one or multiple strings, or a single array of relation names and the optional callbacks to customize the relations. A relation name can refer to a relation defined in modelClass or a sub-relation that stands for a relation of a related record. For example, orders.address means the address relation defined in the model class corresponding to the orders

db\ActiveQueryTrait findWith()

findWith() public method Finds records corresponding to one or multiple relations and populates them into the primary models. public void findWith ( $with, &$models )$with array A list of relations that this query should be performed with. Please refer to with() for details about specifying this parameter. $models array|yii\db\ActiveRecord[] The primary models (can be either AR instances or arrays)

db\ActiveRecord transactions()

transactions() public method Declares which DB operations should be performed within a transaction in different scenarios. The supported DB operations are: OP_INSERT, OP_UPDATE and OP_DELETE, which correspond to the insert(), update() and delete() methods, respectively. By default, these methods are NOT enclosed in a DB transaction. In some scenarios, to ensure data consistency, you may want to enclose some or all of them in transactions. You can do so by overriding this method and returnin

debug\models\search\Mail $body

$body public property Body attribute input search value public string $body = null

db\Command bindPendingParams()

bindPendingParams() protected method Binds pending parameters that were registered via bindValue() and bindValues(). Note that this method requires an active $pdoStatement. protected void bindPendingParams ( )

gii\generators\module\Generator generate()

generate() public method Generates the code based on the current user input and the specified code template files. This is the main method that child classes should implement. Please refer to yii\gii\generators\controller\Generator::generate() as an example on how to implement this method. public yii\gii\CodeFile[] generate ( )return yii\gii\CodeFile[] A list of code files to be created.

db\Migration addCommentOnTable()

addCommentOnTable() public method (available since version 2.0.8) Builds a SQL statement for adding comment to table public void addCommentOnTable ( $table, $comment )$table string The table whose column is to be commented. The table name will be properly quoted by the method. $comment string The text of the comment to be added. The comment will be properly quoted by the method.

sphinx\ActiveQuery createCommand()

createCommand() public method Creates a DB command that can be used to execute this query. public yii\sphinx\Command createCommand ( $db = null )$db yii\sphinx\Connection The DB connection used to create the DB command. If null, the DB connection returned by $modelClass will be used. return yii\sphinx\Command The created DB command instance.