mail\BaseMailer compose()

compose() public method Creates a new message instance and optionally composes its body content via view rendering. public yii\mail\MessageInterface compose ( $view = null, array $params = [] )$view string|array|null The view to be used for rendering the message body. This can be: a string, which represents the view name or path alias for rendering the HTML body of the email. In this case, the text body will be generated by applying strip_tags() to the HTML body. an array with 'html' a

authclient\clients\YandexOAuth defaultTitle()

defaultTitle() protected method Generates service title. protected string defaultTitle ( )return string Service title.

db\Connection $serverRetryInterval

$serverRetryInterval public property The retry interval in seconds for dead servers listed in $masters and $slaves. This is used together with $serverStatusCache. public integer $serverRetryInterval = 600

web\UrlRule hasNormalizer()

hasNormalizer() protected method (available since version 2.0.10) protected boolean hasNormalizer ( $manager )$manager yii\web\UrlManager The URL manager

widgets\ActiveField label()

label() public method Generates a label tag for $attribute. public $this label ( $label = null, $options = [] )$label null|string|false The label to use. If null, the label will be generated via yii\base\Model::getAttributeLabel(). If false, the generated field will not contain the label part. Note that this will NOT be encoded. $options null|array The tag options in terms of name-value pairs. It will be merged with $labelOptions. The options will be rendered as the attributes of t

mongodb\Connection $dsn

$dsn public property Host:port Correct syntax is: mongodb://[username:password@]host1[:port1][,host2[:port2:],...][/dbname] For example: mongodb://localhost:27017 mongodb://developer:password@localhost:27017 mongodb://developer:password@localhost:27017/mydatabase public string $dsn = null

log\Target $except

$except public property List of message categories that this target is NOT interested in. Defaults to empty, meaning no uninteresting messages. If this property is not empty, then any category listed here will be excluded from $categories. You can use an asterisk at the end of a category so that the category can be used to match those categories sharing the same common prefix. For example, 'yii\db*' will match categories starting with 'yii\db\', such as 'yii\db\Connection'. See also $catego

log\Target $enabled

$enabled public property Whether to enable this log target. Defaults to true. public boolean $enabled = true

sphinx\Command dropIndex()

dropIndex() public method Creates a SQL command for dropping an index. public $this dropIndex ( $name, $table )$name string The name of the index to be dropped. The name will be properly quoted by the method. $table string The table whose index is to be dropped. The name will be properly quoted by the method. return $this The command object itself

base\Model getErrors()

getErrors() public method Returns the errors for all attributes or a single attribute. See also: getFirstErrors() getFirstError() public array getErrors ( $attribute = null )$attribute string Attribute name. Use null to retrieve errors for all attributes. return array Errors for all attributes or the specified attribute. Empty array is returned if no error. Note that when returning errors for all attributes, the result is a two-dimensional array, like the following: [ 'username' =&