1 views_handler_argument.inc | views_handler_argument::query($group_by = FALSE) |
Set up the query for this argument.
The argument sent may be found at $this->argument.
File
- core/
modules/ views/ handlers/ views_handler_argument.inc, line 969 - @todo.
Class
- views_handler_argument
- Base class for arguments.
Code
function query($group_by = FALSE) {
$this->ensure_my_table();
$this->query->add_where(0, "$this->table_alias.$this->real_field", $this->argument);
}