views_handler_argument_aggregator_category_cid.inc
Same filename in other branches
File
-
modules/
aggregator/ views_handler_argument_aggregator_category_cid.inc
View source
<?php
/**
* Argument handler to accept an aggregator category id.
*
* @ingroup views_argument_handlers
*/
class views_handler_argument_aggregator_category_cid 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_query("SELECT c.title FROM {aggregator_category} c WHERE c.cid IN ({$placeholders})", $this->value);
while ($term = db_fetch_object($result)) {
$titles[] = check_plain($term->title);
}
return $titles;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
views_handler_argument_aggregator_category_cid | Argument handler to accept an aggregator category id. |