You are here

function views_autorefresh_handler_argument_base::query in Views Hacks 6

Build the query based upon the formula

File

views_autorefresh/views_autorefresh_handler_argument_base.inc, line 15

Class

views_autorefresh_handler_argument_base

Code

function query() {
  $this
    ->ensure_my_table();
  $this->query
    ->add_where(0, "{$this->table_alias}.{$this->real_field} {$this->operator} %d", $this->argument);
}