You are here

function google_analytics_reports_handler_filter_numeric::admin_summary in Google Analytics Reports 7.3

Display the filter on the administrative summary.

Overrides views_handler_filter::admin_summary

File

handlers/google_analytics_reports_handler_filter_numeric.inc, line 176
Definition of google_analytics_reports_handler_filter_numeric.

Class

google_analytics_reports_handler_filter_numeric
Simple filter to handle numerics for Google Analytics.

Code

function admin_summary() {
  if (!empty($this->options['exposed'])) {
    return t('exposed');
  }
  $options = $this
    ->operator_options('short');
  $output = check_plain($options[$this->operator]);
  if (in_array($this->operator, $this
    ->operator_values(2))) {
    $output .= ' ' . t('@min and @max', array(
      '@min' => $this->value['min'],
      '@max' => $this->value['max'],
    ));
  }
  elseif (in_array($this->operator, $this
    ->operator_values(1))) {
    $output .= ' ' . check_plain($this->value['value']);
  }
  return $output;
}