function feeds_ui_help in Feeds 8.2
Same name and namespace in other branches
- 6 feeds_ui/feeds_ui.module \feeds_ui_help()
- 7.2 feeds_ui/feeds_ui.module \feeds_ui_help()
- 7 feeds_ui/feeds_ui.module \feeds_ui_help()
Implements hook_help().
File
- feeds_ui/
feeds_ui.module, line 9
Code
function feeds_ui_help($path, $arg) {
switch ($path) {
case 'admin/structure/feeds':
$output = '<p>' . t('Create one or more Feed importers for pulling content into Drupal. You can use these importers from the <a href="@import">Import</a> page or - if you attach them to a content type - simply by creating a node from that content type.', array(
'@import' => url('import'),
)) . '</p>';
return $output;
}
}