function export_help in Node export 5
Same name and namespace in other branches
- 5.2 export.module \export_help()
- 6 export.module \export_help()
Implementation of hook_help().
File
- ./
export.module, line 7
Code
function export_help($section) {
switch ($section) {
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;
}
}