public function DisplayPluginBase::displaysExposed

Determine if this display should display the exposed filters widgets, so the view will know whether or not to render them.

Regardless of what this function returns, exposed filters will not be used nor displayed unless usesExposed() returns TRUE.

2 methods override DisplayPluginBase::displaysExposed()
Attachment::displaysExposed in drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/Attachment.php
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.
RestExport::displaysExposed in drupal/core/modules/rest/lib/Drupal/rest/Plugin/views/display/RestExport.php
Determine if this display should display the exposed filters widgets, so the view will know whether or not to render them.

File

drupal/core/modules/views/lib/Drupal/views/Plugin/views/display/DisplayPluginBase.php, line 232
Contains Drupal\views\Plugin\views\display\DisplayPluginBase.

Class

DisplayPluginBase
The default display plugin handler. Display plugins handle options and basic mechanisms for different output methods.

Namespace

Drupal\views\Plugin\views\display

Code

public function displaysExposed() {
  return TRUE;
}