function content_taxonomy_views_api in Content Taxonomy 6
Same name and namespace in other branches
- 6.2 content_taxonomy.module \content_taxonomy_views_api()
Implementation of hook_views_api().
File
- ./
content_taxonomy.module, line 419 - Defines a field type for referencing a taxonomy term.
Code
function content_taxonomy_views_api() {
return array(
'api' => 2,
'path' => drupal_get_path('module', 'content_taxonomy') . '/includes/views',
);
}