You are here

function charts_plugin_display_chart::displays_exposed in Charts 7.2

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 views_plugin_display::displays_exposed

File

views/charts_plugin_display_chart.inc, line 176
Contains the Chart display type (similar to Page, Block, Attachment, etc.)

Class

charts_plugin_display_chart
Display plugin to attach multiple chart configurations to the same chart.

Code

function displays_exposed() {
  return $this->options['inherit_exposed_filters'] ? FALSE : TRUE;
}