debug\Module init()

init() public method Initializes the module. This method is called after the module is created and initialized with property values given in configuration. The default implementation will initialize $controllerNamespace if it is not set. If you override this method, please make sure you call the parent implementation. public void init ( )

mongodb\Connection $enableProfiling

$enableProfiling public property (available since version 2.1) Whether to enable profiling the commands and queries being executed. This option will have no effect in case $enableLogging is disabled. public boolean $enableProfiling = true

authclient\widgets\AuthChoice createClientUrl()

createClientUrl() public method Composes client auth URL. public string createClientUrl ( $provider )$provider yii\authclient\ClientInterface External auth client instance. return string Auth URL.

db\pgsql\QueryBuilder checkIntegrity()

checkIntegrity() public method Builds a SQL statement for enabling or disabling integrity check. public string checkIntegrity ( $check = true, $schema = '', $table = '' )$check boolean Whether to turn on or off the integrity check. $schema string The schema of the tables. $table string The table name. return string The SQL statement for checking integrity

base\Model addError()

addError() public method Adds a new error to the specified attribute. public void addError ( $attribute, $error = '' )$attribute string Attribute name $error string New error message

db\Migration addCommentOnColumn()

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

widgets\FragmentCache $variations

$variations public property List of factors that would cause the variation of the content being cached. Each factor is a string representing a variation (e.g. the language, a GET parameter). The following variation setting will cause the content to be cached in different versions according to the current application language: [ Yii::$app->language, ] public array $variations = null

base\Application $controllerNamespace

$controllerNamespace public property The namespace that controller classes are located in. This namespace will be used to load controller classes by prepending it to the controller class name. The default namespace is app\controllers. Please refer to the guide about class autoloading for more details. public string $controllerNamespace = 'app\\controllers'

caching\DbCache getValues()

getValues() protected method Retrieves multiple values from cache with the specified keys. protected array getValues ( $keys )$keys array A list of keys identifying the cached values return array A list of cached values indexed by the keys

web\CookieCollection get()

get() public method Returns the cookie with the specified name. See also getValue(). public yii\web\Cookie get ( $name )$name string The cookie name return yii\web\Cookie The cookie with the specified name. Null if the named cookie does not exist.