You are here

public function views_handler_argument_aggregator_category_cid::title_query in Views (for Drupal 7) 7.3

Same name and namespace in other branches
  1. 6.3 modules/aggregator/views_handler_argument_aggregator_category_cid.inc \views_handler_argument_aggregator_category_cid::title_query()
  2. 6.2 modules/aggregator/views_handler_argument_aggregator_category_cid.inc \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
Definition of views_handler_argument_aggregator_category_cid.

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;
}