log\Target $categories

$categories public property List of message categories that this target is interested in. Defaults to empty, meaning all categories. You can use an asterisk at the end of a category so that the category may 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'. public array $categories = []

mongodb\gii\model\Generator rules()

rules() public method Returns the validation rules for attributes. Validation rules are used by validate() to check if attribute values are valid. Child classes may override this method to declare different validation rules. Each rule is an array with the following structure: [ ['attribute1', 'attribute2'], 'validator type', 'on' => ['scenario1', 'scenario2'], //...other parameters... ] where attribute list: required, specifies the attributes array to be validated, for s

log\Logger getProfiling()

getProfiling() public method Returns the profiling results. By default, all profiling results will be returned. You may provide $categories and $excludeCategories as parameters to retrieve the results that you are interested in. public array getProfiling ( $categories = [], $excludeCategories = [] )$categories array List of categories that you are interested in. You can use an asterisk at the end of a category to do a prefix match. For example, 'yii\db*' will match categories starting wi

db\ActiveQuery joinWith()

joinWith() public method Joins with the specified relations. This method allows you to reuse existing relation definitions to perform JOIN queries. Based on the definition of the specified relation(s), the method will append one or multiple JOIN statements to the current query. If the $eagerLoading parameter is true, the method will also perform eager loading for the specified relations, which is equivalent to calling with() using the specified relations. Note that because a JOIN query will

helpers\BaseHtml jsFile()

jsFile() public static method Generates a script tag that refers to an external JavaScript file. See also yii\helpers\Url::to(). public static string jsFile ( $url, $options = [] )$url string The URL of the external JavaScript file. This parameter will be processed by yii\helpers\Url::to(). $options array The tag options in terms of name-value pairs. The following option is specially handled: condition: specifies the conditional comments for IE, e.g., lt IE 9. When this is specified, t

web\GroupUrlRule $rules

$rules public property The rules contained within this composite rule. Please refer to yii\web\UrlManager::$rules for the format of this property. See also: $prefix $routePrefix public array $rules = []

db\Connection EVENT_COMMIT_TRANSACTION

EVENT_COMMIT_TRANSACTION event of type \yii\db\Event An event that is triggered right after a top-level transaction is committed

debug\panels\MailPanel $name

$name public read-only property Name of the panel public string getName ( )

mail\MessageInterface getCc()

getCc() public abstract method Returns the Cc (additional copy receiver) addresses of this message. public abstract array getCc ( )return array The Cc (additional copy receiver) addresses of this message.

grid\GridView $filterErrorSummaryOptions

$filterErrorSummaryOptions public property The options for rendering the filter error summary. Please refer to yii\helpers\Html::errorSummary() for more details about how to specify the options. See also renderErrors(). public array $filterErrorSummaryOptions = ['class' => 'error-summary']