You are here

function rabbit_hole_help in Rabbit Hole 8

Same name and namespace in other branches
  1. 2.x rabbit_hole.module \rabbit_hole_help()

Implements hook_help().

File

./rabbit_hole.module, line 15
Contains rabbit_hole.module.

Code

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

    // Main module help for the rabbit_hole module.
    case 'help.page.rabbit_hole':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Basic functionality that is shared among the different Rabbit Hole modules.') . '</p>';
      return $output;
    default:
  }
}