You are here

function change_pwd_page_help in Password Separate Form 7

Same name and namespace in other branches
  1. 8 change_pwd_page.module \change_pwd_page_help()

Implements hook_help().

File

./change_pwd_page.module, line 11
Provides the Password Change form in a separate page.

Code

function change_pwd_page_help($path, $arg) {
  switch ($path) {
    case 'admin/help#change_pwd_page':
      $output = '<p>' . t('The Password Separate Form module provides the separate password change form. By default it comes with user account page that little bit confusing for end users. This module would help to provide this form as a separate form to help end users, there is no need to change password fields every time if you are editing some other fields on user account page.') . '</p>';
      return $output;
  }
}