// @todo -- both of these should check definition for alternate keywords.
if (empty($this->value
)) { return !
empty($this->definition
['empty field name'
]) ?
$this->definition
['empty field name'
] :
$this->
t('Uncategorized'
);
} if ($this->value ===
[-1
]) { return !
empty($this->definition
['invalid input'
]) ?
$this->definition
['invalid input'
] :
$this->
t('Invalid input'
);
} return implode($this->operator == 'or' ? ' + ' : ', ',
$this->
titleQuery());
} protected function summaryQuery() { $field =
$this->table . '.' .
$this->field;
$join =
$this->
getJoin();
if (!
empty($this->options
['require_value'
])) { $join->type = 'INNER';
} if (empty($this->options
['add_table'
]) ||
empty($this->view->many_to_one_tables
[$field])) {