1 views_handler_filter_user_current.inc | views_handler_filter_user_current::query() |
Add this filter to the query.
Due to the nature of Form API, the value and the operator have an unintended level of indirection. You will find them in $this->operator and $this->value respectively.
Overrides views_handler_filter_boolean_operator::query
File
- core/
modules/ user/ views/ views_handler_filter_user_current.inc, line 18 - Definition of views_handler_filter_user_current.
Class
- views_handler_filter_user_current
- Filter handler for the current user.
Code
function query() {
$this->ensure_my_table();
$field = $this->table_alias . '.' . $this->real_field . ' ';
$or = db_or();
if (empty($this->value)) {
$or->condition($field, '***CURRENT_USER***', '<>');
if ($this->accept_null) {
$or->isNull($field);
}
}
else {
$or->condition($field, '***CURRENT_USER***', '=');
}
$this->query->add_where($this->options['group'], $or);
}