1 views_plugin_display.inc views_plugin_display::displays_exposed()

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 uses_exposed() returns TRUE.

File

core/modules/views/plugins/views_plugin_display.inc, line 316
Contains the base display plugin.

Class

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

Code

function displays_exposed() {
  return TRUE;
}