function toolbar_menu_clean_help in Toolbar Menu Clean 8
Implements hook_help().
File
- ./
toolbar_menu_clean.module, line 13 - Contains toolbar_menu_clean.module.
Code
function toolbar_menu_clean_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
// Main module help for the toolbar_menu_clean module.
case 'help.page.toolbar_menu_clean':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Clean up Toolbar Menu for user') . '</p>';
return $output;
default:
}
}