You are here

function context_groups_help in Context groups 8.2

Same name and namespace in other branches
  1. 8 context_groups.module \context_groups_help()

Implements hook_help().

File

./context_groups.module, line 17
Hooks and helper functions.

Code

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

    // Main module help for the context_groups module.
    case 'help.page.context_groups':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('In reactions add an option to add groups within each region.') . '</p>';
      return $output;
    default:
  }
}