function password_policy_constraint_lowercase_description in Password Policy 6
Same name and namespace in other branches
- 7 constraints/constraint_lowercase.inc \password_policy_constraint_lowercase_description()
Description of the constraint.
File
- constraints/
constraint_lowercase.inc, line 14 - Password policy constraint callbacks.
Code
function password_policy_constraint_lowercase_description() {
return array(
'name' => t('Lowercase'),
'description' => t('Password must contain the specified minimum number of lowercase letters.'),
);
}