gii\Module $controllerNamespace

$controllerNamespace public property The namespace that controller classes are in. This namespace will be used to load controller classes by prepending it to the controller class name. If not set, it will use the controllers sub-namespace under the namespace of this module. For example, if the namespace of this module is foo\bar, then the default controller namespace would be foo\bar\controllers. See also the guide section on autoloading to learn more about defining namespaces and how class

mongodb\ActiveQuery modify()

modify() public method Performs 'findAndModify' query and returns a single row of result. Warning: in case 'new' option is set to 'false' (which is by default) usage of this method may lead to unexpected behavior at some Active Record features, because object will be populated by outdated data. public yii\mongodb\ActiveRecord|array|null modify ( $update, $options = [], $db = null )$update array Update criteria $options array List of options in format: optionName => optionValue. $db

debug\panels\DbPanel getSummaryName()

getSummaryName() public method public string getSummaryName ( )return string Short name of the panel, which will be use in summary.

authclient\clients\YandexOpenId defaultName()

defaultName() protected method Generates service name. protected string defaultName ( )return string Service name.

filters\VerbFilter beforeAction()

beforeAction() public method public boolean beforeAction ( $event )$event yii\base\ActionEvent throws yii\web\MethodNotAllowedHttpException when the request method is not allowed.

i18n\Formatter $currencyCode

$currencyCode public property The 3-letter ISO 4217 currency code indicating the default currency to use for asCurrency(). If not set, the currency code corresponding to $locale will be used. Note that in this case the $locale has to be specified with a country code, e.g. en-US otherwise it is not possible to determine the default currency. public string $currencyCode = null

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

web\User $accessChecker

$accessChecker public property (available since version 2.0.9) The access checker to use for checking access. If not set the application auth manager will be used. public yii\rbac\CheckAccessInterface $accessChecker = null

db\ActiveRecordInterface getRelation()

getRelation() public abstract method Returns the relation object with the specified name. A relation is defined by a getter method which returns an object implementing the yii\db\ActiveQueryInterface (normally this would be a relational yii\db\ActiveQuery object). It can be declared in either the ActiveRecord class itself or one of its behaviors. public abstract yii\db\ActiveQueryInterface getRelation ( $name, $throwException = true )$name string The relation name, e.g. orders for a rela

mongodb\rbac\MongoDbManager removeItem()

removeItem() protected method Removes an auth item from the RBAC system. protected boolean removeItem ( $item )$item yii\rbac\Item The item to remove return boolean Whether the role or permission is successfully removed throws Exception if data validation or saving fails (such as the name of the role or permission is not unique)