class Letter_Constraint in Password Policy 5
Hierarchy
- class \Constraint
- class \Character_Constraint
- class \Letter_Constraint
- class \Character_Constraint
Expanded class hierarchy of Letter_Constraint
1 string reference to 'Letter_Constraint'
File
- constraints/
constraint_letter.php, line 5
View source
class Letter_Constraint extends Character_Constraint {
function _charIsValid($character) {
return parent::_charIsValid($character) && ctype_alpha($character);
}
function getDescription() {
return t('Password must contain the specified minimum number of letters.');
}
function getValidationErrorMessage() {
return t('Password must contain a minimum of %numChars %letters.', array(
'%numChars' => $this->minimumConstraintValue,
'%letters' => format_plural($this->minimumConstraintValue, t('letter'), t('letters')),
));
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Character_Constraint:: |
function |
Overrides Constraint:: |
2 | |
Constraint:: |
property | |||
Constraint:: |
property | |||
Constraint:: |
property | |||
Constraint:: |
function | |||
Constraint:: |
function | |||
Constraint:: |
function | |||
Constraint:: |
function | |||
Constraint:: |
function | |||
Letter_Constraint:: |
function |
Overrides Character_Constraint:: |
2 | |
Letter_Constraint:: |
function |
Overrides Character_Constraint:: |
2 | |
Letter_Constraint:: |
function |
Overrides Character_Constraint:: |
2 |