You are here

function redhen_contact_help in RedHen CRM 8

Implements hook_help().

File

modules/redhen_contact/redhen_contact.module, line 29
Contains redhen_contact.module..

Code

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

    // Main module help for the redhen_contact module.
    case 'help.page.redhen_contact':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Defines the base contact entity and features.') . '</p>';
      return $output;
    default:
  }
}