function parser_simplepie_help in FeedAPI 5
Same name and namespace in other branches
- 6 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($section) {
switch ($section) {
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');
}
}