public function Feed::defaultableSections in Drupal 9
Same name and namespace in other branches
- 8 core/modules/views/src/Plugin/views/display/Feed.php \Drupal\views\Plugin\views\display\Feed::defaultableSections()
- 10 core/modules/views/src/Plugin/views/display/Feed.php \Drupal\views\Plugin\views\display\Feed::defaultableSections()
Lists the 'defaultable' sections and what items each section contains.
Overrides DisplayPluginBase::defaultableSections
File
- core/
modules/ views/ src/ Plugin/ views/ display/ Feed.php, line 162
Class
- Feed
- The plugin that handles a feed, such as RSS or atom.
Namespace
Drupal\views\Plugin\views\displayCode
public function defaultableSections($section = NULL) {
$sections = parent::defaultableSections($section);
if (in_array($section, [
'style',
'row',
])) {
return FALSE;
}
// Tell views our sitename_title option belongs in the title section.
if ($section == 'title') {
$sections[] = 'sitename_title';
}
elseif (!$section) {
$sections['title'][] = 'sitename_title';
}
return $sections;
}