function feedapi_aggregator_help in FeedAPI 5
Implementation of hook_help().
File
- feedapi_aggregator/
feedapi_aggregator.module, line 10
Code
function feedapi_aggregator_help($section) {
switch ($section) {
case 'admin/help#feedapi_aggregator':
return t('Emulates the Drupal core aggregator with the FeedAPI module.');
case 'feedapi/full_name':
return t('FeedAPI Aggregator - classic style aggregator items');
case 'aggregator/categories':
if (user_access('administer feedapi')) {
return t(' Go to !category-admin for adding or removing categories.', array(
'!category-admin' => l(t('category management'), 'admin/content/feed/category'),
));
}
}
}