function menu_link_content_help

Same name in other branches
  1. 8.9.x core/modules/menu_link_content/menu_link_content.module \menu_link_content_help()
  2. 10 core/modules/menu_link_content/menu_link_content.module \menu_link_content_help()
  3. 11.x core/modules/menu_link_content/menu_link_content.module \menu_link_content_help()

Implements hook_help().

File

core/modules/menu_link_content/menu_link_content.module, line 17

Code

function menu_link_content_help($route_name, RouteMatchInterface $route_match) {
    switch ($route_name) {
        case 'help.page.menu_link_content':
            $output = '';
            $output .= '<h3>' . t('About') . '</h3>';
            $output .= '<p>' . t('The Custom Menu Links module allows users to create menu links. These links can be translated if multiple languages are used for the site.');
            if (\Drupal::moduleHandler()->moduleExists('menu_ui')) {
                $output .= ' ' . t('It is required by the Menu UI module, which provides an interface for managing menus and menu links. For more information, see the <a href=":menu-help">Menu UI module help page</a> and the <a href=":drupal-org-help">online documentation for the Custom Menu Links module</a>.', [
                    ':menu-help' => Url::fromRoute('help.page', [
                        'name' => 'menu_ui',
                    ])->toString(),
                    ':drupal-org-help' => 'https://www.drupal.org/documentation/modules/menu_link',
                ]);
            }
            else {
                $output .= ' ' . t('For more information, see the <a href=":drupal-org-help">online documentation for the Custom Menu Links module</a>. If you enable the Menu UI module, it provides an interface for managing menus and menu links.', [
                    ':drupal-org-help' => 'https://www.drupal.org/documentation/modules/menu_link',
                ]);
            }
            $output .= '</p>';
            return $output;
    }
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.