You are here

function charts_plugin_display_chart::uses_exposed in Charts 7.2

Determine if this display uses exposed filters.

Overrides views_plugin_display::uses_exposed

File

views/charts_plugin_display_chart.inc, line 164
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 uses_exposed() {
  if (!empty($this->options['inherit_exposed_filters']) && parent::uses_exposed()) {
    return TRUE;
  }
  return FALSE;
}