diff --git a/core/modules/menu_link/menu_link.module b/core/modules/menu_link/menu_link.module old mode 100644 new mode 100755 index 222aa83..bbcaa60 --- a/core/modules/menu_link/menu_link.module +++ b/core/modules/menu_link/menu_link.module @@ -7,6 +7,16 @@ use Drupal\menu_link\Plugin\Core\Entity\MenuLink; +function menu_link_help($path, $arg) { + switch ($path) { + case 'admin/help#menu_link': + $output = ''; + $output .= '

' . t('About') . '

'; + $output .= '

' . t('The Menu link module allows users to create menu links. It is required by the Menu module which provides an interface for managing menus. See the Menu module help page for more information.', array('@menu-help' => '/admin/help/menu','@menu' => '/admin/structure/menu')) . '

'; + return $output; + } +} + /** * Entity URI callback. *