|
|
Drupal example source code file (views_handler_argument_taxonomy.inc)
The views_handler_argument_taxonomy.inc Drupal example source code<?php // $Id: views_handler_argument_taxonomy.inc,v 1.1.6.1 2009/11/02 22:01:26 merlinofchaos Exp $ /** * Argument handler for basic taxonomy tid. */ class views_handler_argument_taxonomy extends views_handler_argument { /** * Override the behavior of title(). Get the title of the node. */ function title() { $term = taxonomy_term_load($this->argument); if (!empty($term)) { return check_plain($term->name); } // TODO review text return t('No name'); } } Other Drupal examples (source code examples)Here is a short list of links related to this Drupal views_handler_argument_taxonomy.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.