mail\MessageInterface setCc()

setCc() public abstract method Sets the Cc (additional copy receiver) addresses of this message. public abstract $this setCc ( $cc )$cc string|array Copy receiver email address. You may pass an array of addresses if multiple recipients should receive this message. You may also specify receiver name in addition to email address using format: [email => name]. return $this Self reference.

db\Query having()

having() public method Sets the HAVING part of the query. See also: andHaving() orHaving() public $this having ( $condition, $params = [] )$condition string|array|yii\db\Expression The conditions to be put after HAVING. 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

sphinx\QueryBuilder batchInsert()

batchInsert() public method Generates a batch INSERT SQL statement. For example, $sql = $queryBuilder->batchInsert('idx_user', ['id', 'name', 'age'], [ [1, 'Tom', 30], [2, 'Jane', 20], [3, 'Linda', 25], ], $params); Note that the values in each row must match the corresponding column names. public string batchInsert ( $index, $columns, $rows, &$params )$index string The index that new rows will be inserted into. $columns array The column names $rows array The rows

web\Request $pathInfo

$pathInfo public property Part of the request URL that is after the entry script and before the question mark. Note, the returned path info is already URL-decoded. public string getPathInfo ( )public void setPathInfo ( $value )

authclient\BaseClient getUserAttributes()

getUserAttributes() public method public array getUserAttributes ( )return array List of user attributes

web\IdentityInterface getAuthKey()

getAuthKey() public abstract method Returns a key that can be used to check the validity of a given identity ID. The key should be unique for each individual user, and should be persistent so that it can be used to check the validity of the user identity. The space of such keys should be big enough to defeat potential identity attacks. This is required if yii\web\User::$enableAutoLogin is enabled. See also validateAuthKey(). public abstract string getAuthKey ( )return string A key that i

db\BaseActiveRecord hasMany()

hasMany() public method Declares a has-many relation. The declaration is returned in terms of a relational yii\db\ActiveQuery instance through which the related record can be queried and retrieved back. A has-many relation means that there are multiple related records matching the criteria set by this relation, e.g., a customer has many orders. For example, to declare the orders relation for Customer class, we can write the following code in the Customer class: public function getOrders() {

console\controllers\MessageController $markUnused

$markUnused public property Whether to mark messages that no longer appear in the source code. Defaults to true, which means each of these messages will be enclosed with a pair of '@@' marks. public boolean $markUnused = true

web\Session $useCustomStorage

$useCustomStorage public read-only property Whether to use custom storage. public boolean getUseCustomStorage ( )

jui\SliderInput init()

init() public method Initializes the widget. If you override this method, make sure you call the parent implementation first. public void init ( )