base\Controller $modules

$modules public read-only property All ancestor modules that this controller is located within. public yii\base\Module[] getModules ( )

caching\Dependency $data

$data public property The dependency data that is saved in cache and later is compared with the latest dependency data. public mixed $data = null

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

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 = []

rbac\DbManager loadFromCache()

loadFromCache() public method public void loadFromCache ( )

authclient\signature\RsaSha1 $publicCertificateFile

$publicCertificateFile public property Path to the file, which holds public key certificate. public string $publicCertificateFile = ''

widgets\ActiveForm $errorCssClass

$errorCssClass public property The CSS class that is added to a field container when the associated attribute has validation error. public string $errorCssClass = 'has-error'

web\View registerJsFile()

registerJsFile() public method Registers a JS file. public void registerJsFile ( $url, $options = [], $key = null )$url string The JS file to be registered. $options array The HTML attributes for the script tag. The following options are specially handled and are not treated as HTML attributes: depends: array, specifies the names of the asset bundles that this JS file depends on. position: specifies where the JS script tag should be inserted in a page. The possible values are: POS_HE