public function Rss::summaryTitle

Returns the summary of the settings in the display.

Overrides PluginBase::summaryTitle

File

drupal/core/modules/node/lib/Drupal/node/Plugin/views/row/Rss.php, line 79
Definition of Drupal\node\Plugin\views\row\Rss.

Class

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

Namespace

Drupal\node\Plugin\views\row

Code

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