You are here

function view_password_help in View Password 8.5

Same name and namespace in other branches
  1. 8.4 view_password.module \view_password_help()
  2. 6.0.x view_password.module \view_password_help()

Implements hook_help().

File

./view_password.module, line 13
Contains \Drupal\view_password\view_password.module.

Code

function view_password_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.view_password':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('View Password module will help the user to see what password they entered.') . '</p>';
      return $output;
    default:
  }
}