You are here

public function views_plugin_row_node_rss::summary_title in Views (for Drupal 7) 7.3

Returns the summary of the settings in the display.

Overrides views_plugin::summary_title

File

modules/node/views_plugin_row_node_rss.inc, line 90
Definition of views_plugin_row_node_rss.

Class

views_plugin_row_node_rss
Plugin which performs a node_view on the resulting object and formats it as an RSS item.

Code

public function summary_title() {
  $options = $this
    ->options_form_summary_options();
  return check_plain($options[$this->options['item_length']]);
}