summaryrefslogtreecommitdiff
path: root/sites/all/modules/views/modules/aggregator/views_handler_argument_aggregator_iid.inc
blob: 4c7824ec783f05f137c5237cd06f66463a16f400 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php

/**
 * @file
 * Definition of views_handler_argument_aggregator_iid.
 */

/**
 * Argument handler to accept an aggregator item id.
 *
 * @ingroup views_argument_handlers
 */
class views_handler_argument_aggregator_iid extends views_handler_argument_numeric {
  /**
   * Override the behavior of title(). Get the title of the category.
   */
  function title_query() {
    $titles = array();
    $placeholders = implode(', ', array_fill(0, sizeof($this->value), '%d'));

    $result = db_select('aggregator_item', 'ai')
      ->condition('iid', $this->value, 'IN')
      ->fields('ai', array('title'))
      ->execute();
    foreach ($result as $term) {
      $titles[] = check_plain($term->title);
    }
    return $titles;
  }
}