function feeds_ui_help in Feeds 6
Same name and namespace in other branches
- 8.2 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()
Implementation of hook_help().
File
- feeds_ui/
feeds_ui.module, line 9
Code
function feeds_ui_help($path, $arg) {
switch ($path) {
case 'admin/build/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;
case 'admin/content/feeds':
$output = '<p>' . t('Import content into Drupal.') . '</p>';
return $output;
}
}