mongodb\i18n\MongoDbMessageSource $collection

$collection public property The name of the MongoDB collection, which stores translated messages. This collection is better to be pre-created with fields 'category' and 'language' indexed. public string|array $collection = 'message'

widgets\ActiveForm $ajaxDataType

$ajaxDataType public property The type of data that you're expecting back from the server. public string $ajaxDataType = 'json'

caching\DbDependency $sql

$sql public property The SQL query whose result is used to determine if the dependency has been changed. Only the first row of the query result will be used. public string $sql = null

gii\console\GenerateController formatHint()

formatHint() protected method protected void formatHint ( $hint )$hint

web\View EVENT_END_BODY

EVENT_END_BODY event of type \yii\web\Event An event that is triggered by endBody().

db\Exception $errorInfo

$errorInfo public property The error info provided by a PDO exception. This is the same as returned by PDO::errorInfo. public array $errorInfo = []

mongodb\file\Upload $length

$length public property Total upload length in bytes. public integer $length = 0

rbac\BaseManager $roles

$roles public read-only property All roles in the system. The array is indexed by the role names. public yii\rbac\Role[] getRoles ( )

filters\RateLimiter checkRateLimit()

checkRateLimit() public method Checks whether the rate limit exceeds. public void checkRateLimit ( $user, $request, $response, $action )$user yii\filters\RateLimitInterface The current user $request yii\web\Request $response yii\web\Response $action yii\base\Action The action to be executed throws yii\web\TooManyRequestsHttpException if rate limit exceeds

helpers\BaseHtml getInputName()

getInputName() public static method Generates an appropriate input name for the specified attribute name or expression. This method generates a name that can be used as the input name to collect user input for the specified attribute. The name is generated according to the form name of the model and the given attribute name. For example, if the form name of the Post model is Post, then the input name generated for the content attribute would be Post[content]. See getAttributeName() for expl