function parser_common_syndication_help in FeedAPI 5
Same name and namespace in other branches
- 6 parser_common_syndication/parser_common_syndication.module \parser_common_syndication_help()
Implementation of hook_help().
File
- parser_common_syndication/
parser_common_syndication.module, line 12 - Parse the incoming URL with SimpleXML then provide a data structure of the feed. Requires PHP5 because of SimpleXML.
Code
function parser_common_syndication_help($section) {
switch ($section) {
case 'admin/modules#description':
return t('Provide a common syndication parser for FeedAPI-compatible modules. Only PHP5-compatible. Rather fast.');
case 'feedapi/full_name':
return t('Parser Common Syndication - only for PHP5');
}
}