function homebox_help in Homebox 8
Same name and namespace in other branches
- 6.3 homebox.module \homebox_help()
- 6 homebox.module \homebox_help()
- 6.2 homebox.module \homebox_help()
- 7.3 homebox.module \homebox_help()
- 7.2 homebox.module \homebox_help()
Implements hook_help().
File
- ./
homebox.module, line 14 - Homebox module hooks.
Code
function homebox_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the homebox module.
case 'help.page.homebox':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Port Homebox to Drupal 8') . '</p>';
return $output;
default:
}
}