mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-02 04:37:42 +08:00
Add visibility for all class elements (#20557)
This commit is contained in:
@ -30,12 +30,12 @@ class ActiveForm extends Widget
|
||||
* Add validation state class to container tag
|
||||
* @since 2.0.14
|
||||
*/
|
||||
const VALIDATION_STATE_ON_CONTAINER = 'container';
|
||||
public const VALIDATION_STATE_ON_CONTAINER = 'container';
|
||||
/**
|
||||
* Add validation state class to input tag
|
||||
* @since 2.0.14
|
||||
*/
|
||||
const VALIDATION_STATE_ON_INPUT = 'input';
|
||||
public const VALIDATION_STATE_ON_INPUT = 'input';
|
||||
|
||||
/**
|
||||
* @var array|string the form action URL. This parameter will be processed by [[\yii\helpers\Url::to()]].
|
||||
|
||||
@ -48,7 +48,7 @@ class MaskedInput extends InputWidget
|
||||
/**
|
||||
* The name of the jQuery plugin to use for this widget.
|
||||
*/
|
||||
const PLUGIN_NAME = 'inputmask';
|
||||
public const PLUGIN_NAME = 'inputmask';
|
||||
|
||||
/**
|
||||
* @var string|array|JsExpression the input mask (e.g. '99/99/9999' for date input). The following characters
|
||||
|
||||
Reference in New Issue
Block a user