You are here

function password_policy_constraint_delay_description in Password Policy 6

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

Description of the constraint.

File

constraints/constraint_delay.inc, line 19
Password policy constraint callback to set a minimum delay between password changes.

Code

function password_policy_constraint_delay_description() {
  return array(
    'name' => t('Delay'),
    'description' => t('Minimum number of hours between password changes.'),
  );
}