function feeds_ui_help in Feeds 7
Same name and namespace in other branches
- 8.2 feeds_ui/feeds_ui.module \feeds_ui_help()
- 6 feeds_ui/feeds_ui.module \feeds_ui_help()
- 7.2 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 !import page or - if you attach them to a content type - simply by creating a node from that content type.', array(
'!import' => l(t('Import'), 'import'),
)) . '</p>';
return $output;
}
}