function feed_import_help in Feed Import 7
Same name and namespace in other branches
- 8 feed_import.module \feed_import_help()
- 7.3 feed_import.module \feed_import_help()
- 7.2 feed_import.module \feed_import_help()
Implements hook_help().
File
- ./
feed_import.module, line 15 - User interface, cron functions for feed_import module
Code
function feed_import_help($path, $arg) {
if ($path == 'admin/help#feed_import') {
$vars = array(
'!file' => l('README.txt', drupal_get_path('module', 'feed_import') . '/README.txt'),
'!project_page' => l('Feed Import', 'http://drupal.org/sandbox/SorinSarca/1331632'),
);
$help = t('Import content into entities from XML files using XPATH.');
$help .= '<br />';
$help .= t('For more info please read !file file or go to !project_page.', $vars);
return $help;
}
}