You are here

function export_help in Node export 6

Same name and namespace in other branches
  1. 5.2 export.module \export_help()
  2. 5 export.module \export_help()

Implementation of hook_help().

File

./export.module, line 7

Code

function export_help($path, $arg) {
  switch ($path) {
    case 'admin/help#export':
      $output = '<p>' . t('The export module allows users to export an existing node and then import it into another Drupal installation.') . '</p>';
      $output .= '<p>' . t('Users with the "export node" permission can utilize this functionality. A new tab will appear on node pages with the word "Export".') . '</p>';
      return $output;
  }
}