function taxonomy_views_plugins

3.x taxonomy.views.inc taxonomy_views_plugins()
2.x taxonomy.views.inc taxonomy_views_plugins()

Implementation of hook_views_plugins

Related topics

File

modules/taxonomy.views.inc, line 450
Provide views data and handlers for taxonomy.module

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',
      ),
    ),
  );
}