public function Feed::defaultableSections

Overrides \Drupal\views\Plugin\views\displays\DisplayPluginBase::defaultableSections().

Overrides DisplayPluginBase::defaultableSections

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/Feed.php, line 108
Contains \Drupal\views\Plugin\views\display\Feed.

Class

Feed
The plugin that handles a feed, such as RSS or atom.

Namespace

Drupal\views\Plugin\views\display

Code

public function defaultableSections($section = NULL) {
  $sections = parent::defaultableSections($section);
  if (in_array($section, array(
    '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;
}