UserPasswordValidator
- Type
- Class
- Namespace
- craft\validators
- Inherits
- craft\validators\UserPasswordValidator » yii\validators\StringValidator (opens new window) » yii\validators\Validator (opens new window) » yii\base\Component (opens new window) » yii\base\BaseObject (opens new window)
- Implements
- yii\base\Configurable (opens new window)
- Since
- 3.0.0
Class UserPasswordValidator.
View source (opens new window)
# Public Properties
# currentPassword
- Type
- string (opens new window), null (opens new window)
- Default value
null
The user’s current (hashed) password.
View source (opens new window)
# forceDifferent
- Type
- boolean (opens new window)
- Default value
false
Whether the password must be different from the existing password.
View source (opens new window)
# sameAsCurrent
- Type
- string (opens new window), null (opens new window)
- Default value
null
User-defined error message used when the new password is the same as currentPassword.
View source (opens new window)
# Public Methods
Method | Description |
---|---|
__call() (opens new window) | Calls the named method which is not a class method. |
__clone() (opens new window) | This method is called after the object is created by cloning an existing one. |
__construct() | Constructor. |
__get() (opens new window) | Returns the value of a component property. |
__isset() (opens new window) | Checks if a property is set, i.e. defined and not null. |
__set() (opens new window) | Sets the value of a component property. |
__unset() (opens new window) | Sets a component property to be null. |
addError() (opens new window) | Adds an error about the specified attribute to the model object. |
attachBehavior() (opens new window) | Attaches a behavior to this component. |
attachBehaviors() (opens new window) | Attaches a list of behaviors to the component. |
behaviors() (opens new window) | Returns a list of behaviors that this component should behave as. |
canGetProperty() (opens new window) | Returns a value indicating whether a property can be read. |
canSetProperty() (opens new window) | Returns a value indicating whether a property can be set. |
className() (opens new window) | Returns the fully qualified name of this class. |
clientValidateAttribute() (opens new window) | Returns the JavaScript needed for performing client-side validation. |
createValidator() (opens new window) | Creates a validator object. |
detachBehavior() (opens new window) | Detaches a behavior from the component. |
detachBehaviors() (opens new window) | Detaches all behaviors from the component. |
ensureBehaviors() (opens new window) | Makes sure that the behaviors declared in behaviors() (opens new window) are attached to this component. |
getAttributeNames() (opens new window) | Returns cleaned attribute names without the ! character at the beginning. |
getBehavior() (opens new window) | Returns the named behavior object. |
getBehaviors() (opens new window) | Returns all behaviors attached to this component. |
getClientOptions() (opens new window) | Returns the client-side validation options. |
getValidationAttributes() (opens new window) | Returns a list of attributes this validator applies to. |
hasEventHandlers() (opens new window) | Returns a value indicating whether there is any handler attached to the named event. |
hasMethod() (opens new window) | Returns a value indicating whether a method is defined. |
hasProperty() (opens new window) | Returns a value indicating whether a property is defined for this component. |
init() | Initializes the object. |
isActive() (opens new window) | Returns a value indicating whether the validator is active for the given scenario and attribute. |
isEmpty() | Checks if the given value is empty. |
off() (opens new window) | Detaches an existing event handler from this component. |
on() (opens new window) | Attaches an event handler to an event. |
trigger() (opens new window) | Triggers an event. |
validate() (opens new window) | Validates a given value. |
validateAttribute() | Validates a single attribute. |
validateAttributes() (opens new window) | Validates the specified object. |
# __construct()
Constructor.
The default implementation does two things:
- Initializes the object with the given configuration
$config
. - Call init().
If this method is overridden in a child class, it is recommended that
- the last parameter of the constructor is a configuration array, like
$config
here. - call the parent implementation at the end of the constructor.
View source (opens new window)
Arguments
$config
(array (opens new window)) – Name-value pairs that will be used to initialize the object properties
# init()
Initializes the object.
This method is invoked at the end of the constructor after the object is initialized with the given configuration.
View source (opens new window)
# isEmpty()
Checks if the given value is empty.
A value is considered empty if it is null, an empty array, or an empty string. Note that this method is different from PHP empty(). It will return false when the value is 0.
View source (opens new window)
Arguments
$value
(mixed
) – The value to be checked
Returns
boolean (opens new window) – Whether the value is empty
# validateAttribute()
Validates a single attribute.
Child classes must implement this method to provide the actual validation logic.
View source (opens new window)
Arguments
$model
(yii\base\Model (opens new window)) – The data model to be validated$attribute
(string (opens new window)) – The name of the attribute to be validated.
# Protected Methods
Method | Description |
---|---|
formatMessage() (opens new window) | Formats a mesage using the I18N, or simple strtr if \Yii::$app is not available. |
validateValue() (opens new window) | Validates a value. |
# Constants
Constant | Description |
---|---|
MAX_PASSWORD_LENGTH | |
MIN_PASSWORD_LENGTH |