helpers\BaseInflector id2camel()

id2camel() public static method Converts an ID into a CamelCase name. Words in the ID separated by $separator (defaults to '-') will be concatenated into a CamelCase name. For example, 'post-tag' is converted to 'PostTag'. public static string id2camel ( $id, $separator = '-' )$id string The ID to be converted $separator string The character used to separate the words in the ID return string The resulting CamelCase name

web\Request $csrfToken

$csrfToken public read-only property The token used to perform CSRF validation. public string getCsrfToken ( $regenerate = false )

Controllers

Creating Controller Classes Filters Extending ActiveController After creating the resource classes and specifying how resource data should be formatted, the next thing to do is to create controller actions to expose the resources to end users through RESTful APIs. Yii provides two base controller classes to simplify your work of creating RESTful actions: yii\rest\Controller and yii\rest\ActiveController. The difference between these two controllers is that the latter provides a default set of

web\UserEvent $isValid

$isValid public property Whether the login or logout should proceed. Event handlers may modify this property to determine whether the login or logout should proceed. This property is only meaningful for yii\web\User::EVENT_BEFORE_LOGIN and yii\web\User::EVENT_BEFORE_LOGOUT events. public boolean $isValid = true

validators\UrlValidator $enableIDN

$enableIDN public property Whether validation process should take into account IDN (internationalized domain names). Defaults to false meaning that validation of URLs containing IDN will always fail. Note that in order to use IDN validation you have to install and enable intl PHP extension, otherwise an exception would be thrown. public boolean $enableIDN = false

data\Pagination $route

$route public property The route of the controller action for displaying the paged contents. If not set, it means using the currently requested route. public string $route = null

test\ActiveFixture $tableSchema

$tableSchema public read-only property The schema information of the database table associated with this fixture. public yii\db\TableSchema getTableSchema ( )

bootstrap\ActiveForm $options

$options public property HTML attributes for the form tag. Default is ['role' => 'form']. public array $options = ['role' => 'form']

rbac\Role $type

$type public property The type of the item. This should be either TYPE_ROLE or TYPE_PERMISSION. The type of the item. This should be either TYPE_ROLE or TYPE_PERMISSION. public integer $type = self::TYPE_ROLE

jui\DatePickerLanguageAsset $sourcePath

$sourcePath public property public $sourcePath = '@bower/jquery-ui'