You are here

function menu_item_fields_ui_help in Menu item content fields 8

Implements hook_help().

File

modules/menu_item_fields_ui/menu_item_fields_ui.module, line 13
Primary module hooks for Menu Item Fields UI module.

Code

function menu_item_fields_ui_help($route_name, RouteMatchInterface $route_match) {
  switch ($route_name) {
    case 'help.page.menu_item_fields':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Makes the menu link content entity type fieldable.') . '</p>';
      return $output;
    default:
  }
}