You are here

function sharedemail_help in Shared Email 8.2

Same name and namespace in other branches
  1. 5 sharedemail.module \sharedemail_help()
  2. 6 sharedemail.module \sharedemail_help()
  3. 7 sharedemail.module \sharedemail_help()

Implements hook_help().

File

./sharedemail.module, line 14
Shared email module file.

Code

function sharedemail_help($route_name) {
  switch ($route_name) {
    case 'help.page.sharedemail':
      $output = '<p>' . t('Allow an e-mail address to be used by more than one user account.') . '</p>';
      return $output;
  }
}