You are here

function contact_emails_help in Contact Emails 8

Implements hook_help().

File

./contact_emails.module, line 16
Contains contact_emails.module..

Code

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

    // Main module help for the contact_emails module.
    case 'help.page.contact_emails':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Module to handle contact emails') . '</p>';
      return $output;
    default:
  }
}