function node_export_help in Node export 8
Same name and namespace in other branches
- 6.2 node_export.module \node_export_help()
Implements hook_help().
File
- ./
node_export.module, line 15 - The Node export module.
Code
function node_export_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.node_export':
$output .= '<p>' . t("This module allows users to export nodes and then import it into another Drupal installation, or on the same site.</p><p>Using this module you can save yourself a lot of time setting up new websites that have similar nodes to websites you've already made, migrating nodes to new Drupal versions, or between development/staging/production sites.</p><p>You will need the same content types for the imports to work (unless using Feeds to import), and ideally relevant compatibility with fields, and modules.") . '</p>';
return $output;
default:
}
}