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