function views_handler_argument_numeric::query
Same name in other branches
- 6.x-3.x handlers/views_handler_argument_numeric.inc \views_handler_argument_numeric::query()
Overrides views_handler_argument::query
File
-
handlers/
views_handler_argument_numeric.inc, line 107
Class
- views_handler_argument_numeric
- Basic argument handler for arguments that are numeric.
Code
public function query($group_by = FALSE) {
$this->ensure_my_table();
if (!empty($this->options['break_phrase'])) {
views_break_phrase($this->argument, $this);
}
else {
$this->value = array(
$this->argument,
);
}
$placeholder = $this->placeholder();
$null_check = empty($this->options['not']) ? '' : "OR {$this->table_alias}.{$this->real_field} IS NULL";
if (count($this->value) > 1) {
$operator = empty($this->options['not']) ? 'IN' : 'NOT IN';
$this->query
->add_where_expression(0, "{$this->table_alias}.{$this->real_field} {$operator}({$placeholder}) {$null_check}", array(
$placeholder => $this->value,
));
}
else {
$operator = empty($this->options['not']) ? '=' : '!=';
$this->query
->add_where_expression(0, "{$this->table_alias}.{$this->real_field} {$operator} {$placeholder} {$null_check}", array(
$placeholder => $this->argument,
));
}
}