You are here

function view_user_email_help in View User Email 1.0.x

Implements hook_help().

File

./view_user_email.module, line 14
Contains view_user_email.module.

Code

function view_user_email_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {

    // Main module help for the view_user_email module.
    case 'help.page.view_user_email':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Allow site administrator the ability to grant users of certain roles access to another users email address.') . '</p>';
      return $output;
    default:
  }
}