You are here

public function Rss::summaryTitle in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/node/src/Plugin/views/row/Rss.php \Drupal\node\Plugin\views\row\Rss::summaryTitle()

Returns the summary of the settings in the display.

Overrides PluginBase::summaryTitle

File

core/modules/node/src/Plugin/views/row/Rss.php, line 59

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 $options[$this->options['view_mode']];
}