function toolbar_menu_help in Toolbar Menu 8
Same name and namespace in other branches
- 8.2 toolbar_menu.module \toolbar_menu_help()
Implements hook_help().
File
- ./
toolbar_menu.module, line 15 - Add menu entries in the Drupal Toolbar.
Code
function toolbar_menu_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.toolbar_menu':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('Add your favorite menu in the Drupal Toolbar');
$output .= '<h3>' . t('Usage') . '</h3>';
$output .= '<ul>';
$output .= '<li>' . t('Manage your menus (Structure > Menu)') . '</li>';
$output .= '<li>' . t('Go to Config > Toolbar Menu > Toolbar Menu settings') . '</li>';
$output .= '<li>' . t('Check all menus you want to appear in your toolbar') . '</li>';
$output .= '<li>' . t('Re-order the menu entries if you want') . '</li>';
$output .= '<li>' . t('Save the configuration') . '</li>';
$output .= '<li>' . t('Your selected menus must appears in the toolbar') . '</li>';
$output .= '</ul>';
return $output;
}
}