function rabbit_hole_help in Rabbit Hole 2.x
Same name and namespace in other branches
- 8 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:
}
}