You are here

views_handler_filter_aggregator_category_cid.inc in Views (for Drupal 7) 6.2

File

modules/aggregator/views_handler_filter_aggregator_category_cid.inc
View source
<?php

/**
 * Filter by aggregator category cid
 */
class views_handler_filter_aggregator_category_cid extends views_handler_filter_in_operator {
  function get_value_options() {
    if (isset($this->value_options)) {
      return;
    }
    $this->value_options = array();
    $result = db_query('SELECT * FROM {aggregator_category} ORDER BY title');
    while ($category = db_fetch_object($result)) {
      $this->value_options[$category->cid] = $category->title;
    }
  }

}

Classes

Namesort descending Description
views_handler_filter_aggregator_category_cid Filter by aggregator category cid