00001 <?php 00002 00008 class views_handler_argument_taxonomy extends views_handler_argument_numeric { 00009 00013 function title() { 00014 // There might be no valid argument. 00015 if ($this->argument) { 00016 $term = taxonomy_term_load($this->argument); 00017 if (!empty($term)) { 00018 return check_plain($term->name); 00019 } 00020 } 00021 // TODO review text 00022 return t('No name'); 00023 } 00024 }