function change_pwd_page_help in Password Separate Form 8
Same name and namespace in other branches
- 7 change_pwd_page.module \change_pwd_page_help()
Implements hook_help().
File
- ./
change_pwd_page.module, line 14 - Provides the Password Change form in a separate page.
Code
function change_pwd_page_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.change_pwd_page':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$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;
default:
}
}