taxonomy_term.inc 661 B

1234567891011121314151617181920212223242526272829
  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. 'path_field' => array(
  17. 'id' => 'tid',
  18. 'table' => 'taxonomy_term_data',
  19. 'field' => 'tid',
  20. 'exclude' => TRUE,
  21. 'alter' => array(
  22. 'alter_text' => 1,
  23. 'text' => 'taxonomy/term/[tid]',
  24. ),
  25. ),
  26. );
  27. }