You are here

function password_policy_constraint_lowercase_description in Password Policy 7

Same name and namespace in other branches
  1. 6 constraints/constraint_lowercase.inc \password_policy_constraint_lowercase_description()

Description of the constraint.

File

constraints/constraint_lowercase.inc, line 15
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.'),
  );
}