|
|
Drupal example source code file (views_handler_filter_aggregator_category_cid.inc)
The views_handler_filter_aggregator_category_cid.inc Drupal example source code<?php // $Id: views_handler_filter_aggregator_category_cid.inc,v 1.2 2009/06/10 22:04:57 merlinofchaos Exp $ /** * 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; } } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_handler_filter_aggregator_category_cid.inc source code file: |
"Drupal" is a registered trademark of Dries Buytaert.
my drupal tutorials and examples
Copyright
1998-2016 Alvin Alexander, alvinalexander.com
All Rights Reserved.
Beginning in 2016, a portion of the proceeds from pages under the '/drupal-code-examples/' URI will be donated to charity.