You are here

function menu_export_help in Menu Import and Export 8

Implements hook_help().

File

./menu_export.module, line 7

Code

function menu_export_help($route_name, $route_match) {
  switch ($route_name) {

    // Main module help for the menu_export module.
    case 'help.page.menu_export':
      $output = '';
      $output .= '<h3>' . t('About') . '</h3>';
      $output .= '<p>' . t('Exports and Imports menu links.') . '</p>';
      return $output;
    default:
  }
}