function parser_simplepie_help in FeedAPI 6
Same name and namespace in other branches
- 5 parser_simplepie/parser_simplepie.module \parser_simplepie_help()
Implementation of hook_help().
File
- parser_simplepie/
parser_simplepie.module, line 11 - Parse the incoming URL with SimplePie then provide a data structure of the feed
Code
function parser_simplepie_help($path, $arg) {
switch ($path) {
case 'admin/modules#description':
return t('Provide a common syndication parser for FeedAPI-compatible modules powered by SimplePie library.');
case 'feedapi/full_name':
return t('Parser SimplePie');
}
}