You are here

menu_export.module in Menu Import and Export 8

File

menu_export.module
View source
<?php

/**
 * Implements hook_help().
 */
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:
  }
}

Functions

Namesort descending Description
menu_export_help Implements hook_help().