You are here

function views_handler_filter_ad_statistics_action::query in Advertisement 6.2

File

views/handlers/views_handler_filter_ad_statistics_action.inc, line 13

Class

views_handler_filter_ad_statistics_action

Code

function query() {
  $info = $this
    ->operators();
  if (!empty($info[$this->operator]['method'])) {
    $this
      ->{$info[$this->operator]['method']}();
  }
  $this->query
    ->add_where($this->options['group'], "{$this->table_alias}.action IN ('view', 'click')");
}