function feedapi_drush_help in FeedAPI 6
Implementation of hook_drush_help().
File
- ./
feedapi.drush.inc, line 11 - Drush commands for FeedAPI.
Code
function feedapi_drush_help($section) {
switch ($section) {
case 'drush:feedapi create':
return dt('Creates a feed.');
case 'drush:feedapi refresh':
return dt('Refreshes a feed.');
case 'drush:feedapi delete':
return dt('Deletes a feed.');
case 'drush:feedapi parse':
return dt('Parses a feed and shows you the output.');
case 'drush:feedapi config':
return dt('Shows the config of a parser of a processor.');
}
}