mongodb\rbac\MongoDbManager getRule()

getRule() public method Returns the rule of the specified name. public null|yii\rbac\Rule getRule ( $name )$name string The rule name return null|yii\rbac\Rule The rule object, or null if the specified name does not correspond to a rule.

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'

mongodb\file\Download getBytes()

getBytes() public method Alias of toString() method. public string getBytes ( )return string File content.

base\View beginBlock()

beginBlock() public method Begins recording a block. This method is a shortcut to beginning yii\widgets\Block public yii\widgets\Block beginBlock ( $id, $renderInPlace = false )$id string The block ID. $renderInPlace boolean Whether to render the block content in place. Defaults to false, meaning the captured block will not be displayed. return yii\widgets\Block The Block widget instance

base\Model createValidators()

createValidators() public method Creates validator objects based on the validation rules specified in rules(). Unlike getValidators(), each time this method is called, a new list of validators will be returned. public ArrayObject createValidators ( )return ArrayObject Validators throws yii\base\InvalidConfigException if any validation rule configuration is invalid

test\BaseActiveFixture load()

load() public method Loads the fixture. The default implementation simply stores the data returned by getData() in $data. You should usually override this method by putting the data into the underlying database. public void load ( )

authclient\signature\BaseMethod verify()

verify() public method Verifies given OAuth request. public boolean verify ( $signature, $baseString, $key )$signature string Signature to be verified. $baseString string Signature base string. $key string Signature key. return boolean Success.

debug\panels\DbPanel isQueryCountCritical()

isQueryCountCritical() public method Check if given queries count is critical according settings. public boolean isQueryCountCritical ( $count )$count integer Queries count

db\sqlite\QueryBuilder dropColumn()

dropColumn() public method Builds a SQL statement for dropping a DB column. public string dropColumn ( $table, $column )$table string The table whose column is to be dropped. The name will be properly quoted by the method. $column string The name of the column to be dropped. The name will be properly quoted by the method. return string The SQL statement for dropping a DB column. throws yii\base\NotSupportedException this is not supported by SQLite