views_handler_argument_taxonomy.inc 601 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /**
  3. * @file
  4. * Definition of views_handler_argument_taxonomy.
  5. */
  6. /**
  7. * Argument handler for basic taxonomy tid.
  8. *
  9. * @ingroup views_argument_handlers
  10. */
  11. class views_handler_argument_taxonomy extends views_handler_argument_numeric {
  12. /**
  13. * Override the behavior of title(). Get the title of the node.
  14. */
  15. function title() {
  16. // There might be no valid argument.
  17. if ($this->argument) {
  18. $term = taxonomy_term_load($this->argument);
  19. if (!empty($term)) {
  20. return check_plain($term->name);
  21. }
  22. }
  23. // TODO review text
  24. return t('No name');
  25. }
  26. }