You are here

function password_policy_password_tab_help in Password Policy 7

Implements hook_help().

File

contrib/password_tab/password_policy_password_tab.module, line 11
Adds a separate tab to change password.

Code

function password_policy_password_tab_help($path, $arg) {
  switch ($path) {
    case 'admin/help#password_policy_password_tab':
      return '<p>' . t('Adds a separate tab for the user to change their password.  When enabled, the password change fields are removed from the user edit tab.') . '</p>';
  }
}