You are here

function password_policy_perm in Password Policy 6

Same name and namespace in other branches
  1. 5 password_policy.module \password_policy_perm()

Implements hook_perm().

File

./password_policy.module, line 162
The password policy module allows you to enforce a specific level of password complexity for the user passwords on the system.

Code

function password_policy_perm() {
  return array(
    'unblock expired accounts',
    'force password change',
  );
}