public function RestExport::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.

Overrides DisplayPluginBase::displaysExposed

File

drupal/core/modules/rest/lib/Drupal/rest/Plugin/views/display/RestExport.php, line 110
Contains \Drupal\rest\Plugin\views\display\RestExport.

Class

RestExport
The plugin that handles Data response callbacks for REST resources.

Namespace

Drupal\rest\Plugin\views\display

Code

public function displaysExposed() {
  return FALSE;
}