You are here

function force_password_change_permission in Force Password Change 7.2

Same name and namespace in other branches
  1. 7 force_password_change.module \force_password_change_permission()

Implementation of hook_perm()

File

./force_password_change.module, line 7

Code

function force_password_change_permission() {
  return array(
    'Administer force password change' => array(
      'title' => t('Force changing of passwords'),
      'description' => t('Gives users the ability to force users to change their password.'),
    ),
  );
}