function views_plugin_display::displays_exposed
Determine if this display should display the exposed filters widgets.
If 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.
1 method overrides views_plugin_display::displays_exposed()
- views_plugin_display_attachment::displays_exposed in plugins/
views_plugin_display_attachment.inc - 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.
File
-
plugins/
views_plugin_display.inc, line 336
Class
- views_plugin_display
- The default display plugin handler. Display plugins handle options and basic mechanisms for different output methods.
Code
public function displays_exposed() {
return TRUE;
}