public function 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

drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/Attachment.php, line 291
Definition of Drupal\views\Plugin\views\display\Attachment.

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;
}