1 views_plugin_row_node_rss.inc | views_plugin_row_node_rss::summary_title() |
Returns the summary of the settings in the display.
Overrides views_plugin::summary_title
File
- core/
modules/ node/ views/ views_plugin_row_node_rss.inc, line 71 - Contains the node RSS row style plugin.
Class
- views_plugin_row_node_rss
- Plugin which performs a node_view on the resulting object and formats it as an RSS item.
Code
function summary_title() {
$options = $this->options_form_summary_options();
return check_plain($options[$this->options['item_length']]);
}