You are here

function panopoly_news_panopoly_news_rss_content_type_render in Panopoly News 7

Implementation of hook_CONTENT_TYPE_content_type_render()

File

plugins/content_types/panopoly_news_rss.inc, line 19

Code

function panopoly_news_panopoly_news_rss_content_type_render($subtype, $conf, $panel_args, $context) {
  $pane = new stdClass();
  $pane->content = theme_feed_icon(array(
    'title' => 'News from ' . variable_get('site_name'),
    'url' => 'news/rss',
  ));
  return $pane;
}