public function Rss::buildOptionsForm_summary_options in Zircon Profile 8
Same name in this branch
- 8 core/modules/node/src/Plugin/views/row/Rss.php \Drupal\node\Plugin\views\row\Rss::buildOptionsForm_summary_options()
- 8 core/modules/comment/src/Plugin/views/row/Rss.php \Drupal\comment\Plugin\views\row\Rss::buildOptionsForm_summary_options()
Same name and namespace in other branches
- 8.0 core/modules/comment/src/Plugin/views/row/Rss.php \Drupal\comment\Plugin\views\row\Rss::buildOptionsForm_summary_options()
Return the main options, which are shown in the summary title.
Overrides RssPluginBase::buildOptionsForm_summary_options
File
- core/
modules/ comment/ src/ Plugin/ views/ row/ Rss.php, line 60 - Contains \Drupal\comment\Plugin\views\row\Rss.
Class
- Rss
- Plugin which formats the comments as RSS items.
Namespace
Drupal\comment\Plugin\views\rowCode
public function buildOptionsForm_summary_options() {
$options = parent::buildOptionsForm_summary_options();
$options['title'] = $this
->t('Title only');
$options['default'] = $this
->t('Use site default RSS settings');
return $options;
}