Mercurial > hg > rr-repo
view sites/all/modules/views/plugins/views_wizard/taxonomy_term.inc @ 2:b74b41bb73f0
-- Google analytics module
author | danieleb <danielebarchiesi@me.com> |
---|---|
date | Thu, 22 Aug 2013 17:22:54 +0100 |
parents | ff03f76ab3fe |
children |
line wrap: on
line source
<?php /** * @file * Views wizard for taxonomy term views. */ if (module_exists('taxonomy')) { $plugin = array( 'name' => 'taxonomy_term', 'base_table' => 'taxonomy_term_data', 'form_wizard_class' => array( 'file' => 'views_ui_taxonomy_term_views_wizard.class.php', 'class' => 'ViewsUiTaxonomyTermViewsWizard', ), 'title' => t('Taxonomy terms'), 'filters' => array( ), 'path_field' => array( 'id' => 'tid', 'table' => 'taxonomy_term_data', 'field' => 'tid', 'exclude' => TRUE, 'alter' => array( 'alter_text' => 1, 'text' => 'taxonomy/term/[tid]', ), ), ); }