widgets\ActiveForm $scrollToErrorOffset

$scrollToErrorOffset public property (available since version 2.0.11) Offset in pixels that should be added when scrolling to the first error. public integer $scrollToErrorOffset = 0

web\UrlManager $normalizer

$normalizer public property (available since version 2.0.10) The configuration for yii\web\UrlNormalizer used by this UrlManager. The default value is false, which means normalization will be skipped. If you wish to enable URL normalization, you should configure this property manually. For example: [ 'class' => 'yii\web\UrlNormalizer', 'collapseSlashes' => true, 'normalizeTrailingSlash' => true, ] public yii\web\UrlNormalizer|array|string|false $normalizer = false

rbac\PhpManager $children

$children protected property protected array $children = []

rest\UrlRule $except

$except public property List of actions that should be excluded. Any action found in this array will NOT have its URL rules created. See also $patterns. public array $except = []

widgets\ActiveForm validateMultiple()

validateMultiple() public static method Validates an array of model instances and returns an error message array indexed by the attribute IDs. This is a helper method that simplifies the way of writing AJAX validation code for tabular input. For example, you may use the following code in a controller action to respond to an AJAX validation request: // ... load $models ... if (Yii::$app->request->isAjax) { Yii::$app->response->format = Response::FORMAT_JSON; return Active

validators\EmailValidator $checkDNS

$checkDNS public property Whether to check whether the email's domain exists and has either an A or MX record. Be aware that this check can fail due to temporary DNS problems even if the email address is valid and an email would be deliverable. Defaults to false. public boolean $checkDNS = false

widgets\ActiveForm getClientOptions()

getClientOptions() protected method Returns the options for the form JS widget. protected array getClientOptions ( )return array The options.

web\View head()

head() public method Marks the position of an HTML head section. public void head ( )

web\AssetManager publishDirectory()

publishDirectory() protected method Publishes a directory. protected array publishDirectory ( $src, $options )$src string The asset directory to be published $options array The options to be applied when publishing a directory. The following options are supported: only: array, list of patterns that the file paths should match if they want to be copied. except: array, list of patterns that the files or directories should match if they want to be excluded from being copied. caseSensitive

db\Schema getQueryBuilder()

getQueryBuilder() public method public yii\db\QueryBuilder getQueryBuilder ( )return yii\db\QueryBuilder The query builder for this connection.