t('Feed icons'), 'single' => TRUE, 'icon' => 'icon_page.png', 'description' => t('Add the site feed_icons statement as content.'), 'category' => t('Page elements'), 'render last' => TRUE, ); /** * Output function for the 'page_feed_icons' content type. * * Outputs the feed_icons statement for the site. */ function ctools_page_feed_icons_content_type_render($subtype, $conf, $panel_args) { $block = new stdClass(); $block->content = drupal_get_feeds(); return $block; }