function feed_import_help in Feed Import 8
Same name and namespace in other branches
- 7.3 feed_import.module \feed_import_help()
- 7 feed_import.module \feed_import_help()
- 7.2 feed_import.module \feed_import_help()
Implements hook_help().
File
- ./
feed_import.module, line 17 - User interface, cron functions for feed_import module.
Code
function feed_import_help($path, $arg) {
if ($path == 'admin/help#feed_import') {
$vars = array(
'!project_page' => \Drupal::l('Feed Import', \Drupal\Core\Url::fromUri('http://drupal.org/project/feed_import')),
);
$help = t('Imports content from various file types (like XML, HTML, CSV, JSON, ...) or from databases.');
$help .= '<br />';
$help .= t('For more info please go to !project_page.', $vars);
return $help;
}
}