function taxonomy_views_plugins

Same name in other branches
  1. 7.x-3.x modules/taxonomy.views.inc \taxonomy_views_plugins()

Implementation of hook_views_plugins

Related topics

File

modules/taxonomy.views.inc, line 483

Code

function taxonomy_views_plugins() {
    return array(
        'module' => 'views',
        // This just tells our themes are elsewhere.
'argument validator' => array(
            'taxonomy_term' => array(
                'title' => t('Taxonomy term'),
                'handler' => 'views_plugin_argument_validate_taxonomy_term',
                'path' => drupal_get_path('module', 'views') . '/modules/taxonomy',
            ),
        ),
        'argument default' => array(
            'taxonomy_tid' => array(
                'title' => t('Taxonomy Term ID from URL'),
                'handler' => 'views_plugin_argument_default_taxonomy_tid',
                'path' => drupal_get_path('module', 'views') . '/modules/taxonomy',
                'parent' => 'fixed',
            ),
        ),
    );
}