You are here

public function Attachment::displaysExposed in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/views/src/Plugin/views/display/Attachment.php \Drupal\views\Plugin\views\display\Attachment::displaysExposed()

If an attachment is set to inherit the exposed filter settings from its parent display, then don't render and display a second set of exposed filter widgets.

Overrides DisplayPluginBase::displaysExposed

File

core/modules/views/src/Plugin/views/display/Attachment.php, line 292

Class

Attachment
The plugin that handles an attachment display.

Namespace

Drupal\views\Plugin\views\display

Code

public function displaysExposed() {
  return $this->options['inherit_exposed_filters'] ? FALSE : TRUE;
}