You are here

function password_policy_constraint_letter_description in Password Policy 6

Same name and namespace in other branches
  1. 7 constraints/constraint_letter.inc \password_policy_constraint_letter_description()

Description of the constraint.

File

constraints/constraint_letter.inc, line 14
Password policy constraint callbacks.

Code

function password_policy_constraint_letter_description() {
  return array(
    'name' => t('Letter'),
    'description' => t('Password must contain the specified minimum number of letters.'),
  );
}