You are here

function counter_help in Counter 8

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

Implements hook_help().

File

./counter.module, line 13
The counter module used for displaying Site Counter.

Code

function counter_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.counter':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('The counter module used for displaying Site Counter') . ' </p>';
      return $output;
  }
}