You are here

function views_plugin_style_rss::get_channel_elements in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 plugins/views_plugin_style_rss.inc \views_plugin_style_rss::get_channel_elements()
  2. 7.3 plugins/views_plugin_style_rss.inc \views_plugin_style_rss::get_channel_elements()

Return an array of additional XHTML elements to add to the channel.

Return value

An array that can be passed to format_xml_elements().

1 call to views_plugin_style_rss::get_channel_elements()
views_plugin_style_rss::render in plugins/views_plugin_style_rss.inc
Render the display in this style.

File

plugins/views_plugin_style_rss.inc, line 76
Contains the RSS style plugin.

Class

views_plugin_style_rss
Default style plugin to render an RSS feed.

Code

function get_channel_elements() {
  return array();
}