views_handler_argument_aggregator_category_cid.inc

Same filename in other branches
  1. 6.x-3.x modules/aggregator/views_handler_argument_aggregator_category_cid.inc

Definition of views_handler_argument_aggregator_category_cid.

File

modules/aggregator/views_handler_argument_aggregator_category_cid.inc

View source
<?php


/**
 * @file
 * Definition of views_handler_argument_aggregator_category_cid.
 */

/**
 * 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.
     */
    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;
    }

}

Classes

Title Deprecated Summary
views_handler_argument_aggregator_category_cid Argument handler to accept an aggregator category id.