You are here

function node_export_help in Node export 6.2

Same name and namespace in other branches
  1. 8 node_export.module \node_export_help()

Implementation of hook_help().

File

./node_export.module, line 16
The Node Export module.

Code

function node_export_help($path, $arg) {
  switch ($path) {
    case 'admin/help#node_export':
      $output = '<p>' . t('The Node 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>';
      $output .= '<p>' . t('It is also possible to do bulk exports, with the "export bulk nodes" permission, via Content admin (admin/content/node) or using "Views Bulk Operations".') . '</p>';
      $output .= '<p>' . t('Importing nodes is done via the "Node Export: Import" page (admin/content/import) and can be done by those with the "use PHP to import nodes" permission.') . '</p>';
      return $output;
  }
}