function password_policy_constraint_length_description in Password Policy 7
Same name and namespace in other branches
- 6 constraints/constraint_length.inc \password_policy_constraint_length_description()
Description of the constraint.
File
- constraints/
constraint_length.inc, line 15 - Password policy constraint callbacks.
Code
function password_policy_constraint_length_description() {
return array(
'name' => t('Length'),
'description' => t('Password must be equal to or longer than the specified minimum length.'),
);
}