function views_handler_argument_aggregator_category_cid::title_query
Override the behavior of title(). Get the title of the category.
Overrides views_handler_argument_numeric::title_query
File
-
modules/
aggregator/ views_handler_argument_aggregator_category_cid.inc, line 18
Class
- views_handler_argument_aggregator_category_cid
- Argument handler to accept an aggregator category id.
Code
public function title_query() {
$titles = array();
$result = db_query("SELECT c.title FROM {aggregator_category} c WHERE c.cid IN (:cid)", array(
':cid' => $this->value,
));
foreach ($result as $term) {
$titles[] = check_plain($term->title);
}
return $titles;
}