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