You are here

function weight_handler_filter_sticky::query in Weight 6

Same name and namespace in other branches
  1. 7 weight_handler_filter_sticky.inc \weight_handler_filter_sticky::query()

File

views/weight_handler_filter_sticky.inc, line 8
Field handler for Weight module.

Class

weight_handler_filter_sticky
@file Field handler for Weight module.

Code

function query() {
  $this
    ->ensure_my_table();
  $where = "{$this->table_alias}.{$this->real_field} ";
  if (empty($this->value)) {
    $where .= '<= 0';
  }
  else {
    $where .= ' > 0';
  }
  $this->query
    ->add_where($this->options['group'], $where);
}