public function Rss::buildOptionsForm_summary_options in Support Ticketing System 8
Return the main options, which are shown in the summary title.
Overrides RssPluginBase::buildOptionsForm_summary_options
1 call to Rss::buildOptionsForm_summary_options()
- Rss::summaryTitle in modules/
support_ticket/ src/ Plugin/ views/ row/ Rss.php - Returns the summary of the settings in the display.
File
- modules/
support_ticket/ src/ Plugin/ views/ row/ Rss.php, line 72 - Contains \Drupal\support_ticket\Plugin\views\row\Rss.
Class
- Rss
- Plugin which performs a support_ticket_view on the resulting object and formats it as an RSS item.
Namespace
Drupal\support_ticket\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;
}