diff --git a/core/modules/toolbar/toolbar.module b/core/modules/toolbar/toolbar.module index 3599c59..cc9b7f8 100644 --- a/core/modules/toolbar/toolbar.module +++ b/core/modules/toolbar/toolbar.module @@ -23,11 +23,18 @@ function toolbar_help($route_name, Request $request) { switch ($route_name) { case 'help.page.toolbar': $output = '

' . t('About') . '

'; - $output .= '

' . t('The Toolbar module displays links to top-level administration menu items and links from other modules at the top of the screen. For more information, see the online handbook entry for Toolbar module.', array('@toolbar' => 'http://drupal.org/documentation/modules/toolbar')) . '

'; + $output .= '

' . t('The Toolbar module displays a bar containing top-level administrative components across the top of the screen. For more information, see the online documentation for the Toolbar module.', array('!toolbar_docs' => 'https://drupal.org/documentation/modules/toolbar')) . '

'; + $output .= '

' . t('Terminology') . '

'; + $output .= '
'; + $output .= '
' . t('Tabs') . '
'; + $output .= '
' . t('Tabs are usually buttons, and are displayed in a bar across the top of the screen. Some tabs are simple buttons that execute an action (such as starting Edit mode); other tabs toggle which tray is open.') . '
'; + $output .= '
' . t('Trays') . '
'; + $output .= '
' . t('Trays are usually lists of links, which can be hierarchical like a menu. If a tray has been toggled open, it is displayed either vertically or horizontally below the tab bar, depending on the browser width. In wide browser widths, the user has the ability to toggle from vertical to horizontal, using a link at the bottom or right of the tray; hierarchical menus only have open/close behavior in vertical mode.') . '
'; + $output .= '
'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Displaying administrative links') . '
'; - $output .= '
' . t('The Toolbar module displays a bar containing top-level administrative components across the top of the screen. Below that, the Toolbar module has a drawer section where it displays links provided by other modules, such as the core Shortcut module. The drawer can be hidden/shown by clicking on its corresponding tab.', array('@shortcuts-help' => url('admin/help/shortcut'))) . '
'; + $output .= '
' . t('The Toolbar module displays "tab" and "tray" content from other modules. Core modules such as Shortcut, Edit, and Menu Link provide tabs and trays. ', array('!shortcut-help' => \Drupal::url('help.page', array('name' => 'shortcut')), '!edit-help' => \Drupal::url('help.page', array('name' => 'quickedit')), '!menu-help' => \Drupal::url('help.page', array('name' => 'menu_link')))) . '
'; $output .= '
'; return $output; }