function ctools_page_feed_icons_content_type_render in Chaos Tool Suite (ctools) 6
Same name and namespace in other branches
- 7 plugins/content_types/page/page_feed_icons.inc \ctools_page_feed_icons_content_type_render()
Output function for the 'page_feed_icons' content type.
Outputs the feed_icons statement for the site.
File
- plugins/
content_types/ page/ page_feed_icons.inc, line 27 - Plugin to handle the 'page_feed_icons' content type which allows the feed_icons statement of the site to be embedded into a panel.
Code
function ctools_page_feed_icons_content_type_render($subtype, $conf, $panel_args) {
$block = new stdClass();
$block->content = drupal_get_feeds();
return $block;
}