views_handler_filter_aggregator_category_cid.inc

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

Definition of views_handler_filter_aggregator_category_cid.

File

modules/aggregator/views_handler_filter_aggregator_category_cid.inc

View source
<?php


/**
 * @file
 * Definition of views_handler_filter_aggregator_category_cid.
 */

/**
 * Filter by aggregator category cid.
 *
 * @ingroup views_filter_handlers
 */
class views_handler_filter_aggregator_category_cid extends views_handler_filter_in_operator {
    
    /**
     * {@inheritdoc}
     */
    public function get_value_options() {
        if (isset($this->value_options)) {
            return;
        }
        $this->value_options = array();
        $result = db_query('SELECT * FROM {aggregator_category} ORDER BY title');
        foreach ($result as $category) {
            $this->value_options[$category->cid] = $category->title;
        }
    }

}

Classes

Title Deprecated Summary
views_handler_filter_aggregator_category_cid Filter by aggregator category cid.