taxonomy_term.inc 666 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * @file
  4. * Views wizard for taxonomy term views.
  5. */
  6. if (module_exists('taxonomy')) {
  7. $plugin = array(
  8. 'name' => 'taxonomy_term',
  9. 'base_table' => 'taxonomy_term_data',
  10. 'form_wizard_class' => array(
  11. 'file' => 'views_ui_taxonomy_term_views_wizard.class.php',
  12. 'class' => 'ViewsUiTaxonomyTermViewsWizard',
  13. ),
  14. 'title' => t('Taxonomy terms'),
  15. 'filters' => array(
  16. ),
  17. 'path_field' => array(
  18. 'id' => 'tid',
  19. 'table' => 'taxonomy_term_data',
  20. 'field' => 'tid',
  21. 'exclude' => TRUE,
  22. 'alter' => array(
  23. 'alter_text' => 1,
  24. 'text' => 'taxonomy/term/[tid]',
  25. ),
  26. ),
  27. );
  28. }