function menu_firstchild_help in Menu Firstchild 8
Same name and namespace in other branches
- 2.x menu_firstchild.module \menu_firstchild_help()
Implements hook_help().
File
- ./
menu_firstchild.module, line 17 - Contains menu_firstchild.module.
Code
function menu_firstchild_help($route_name, RouteMatchInterface $route_match) {
if ($route_name == 'help.page.menu_firstchild') {
$output = '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Allows to create parent menu items without path that link to their first viewable children.') . '</p>';
return $output;
}
}