You are here

function password_policy_constraint_length_description in Password Policy 6

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

Description of the constraint.

File

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

Code

function password_policy_constraint_length_description() {
  return array(
    'name' => t('Length'),
    'description' => t('Password must be longer than the specified minimum length.'),
  );
}