1 taxonomy.views.inc | taxonomy_views_plugins() |
Implements hook_views_plugins().
File
- core/
modules/ taxonomy/ views/ taxonomy.views.inc, line 422 - 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' => backdrop_get_path('module', 'views') . '/modules/taxonomy', // not necessary for most modules
),
),
'argument default' => array(
'taxonomy_tid' => array(
'title' => t('Taxonomy term ID from URL'),
'handler' => 'views_plugin_argument_default_taxonomy_tid',
'path' => backdrop_get_path('module', 'views') . '/modules/taxonomy',
'parent' => 'fixed',
),
),
);
}