|
|
Drupal example source code file (views_handler_argument_aggregator_category_cid.inc)
The views_handler_argument_aggregator_category_cid.inc Drupal example source code<?php // $Id: views_handler_argument_aggregator_category_cid.inc,v 1.1 2009/06/02 19:46:06 merlinofchaos Exp $ /** * Argument handler to accept an aggregator category id. */ 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; } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_handler_argument_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.