function tripal_natural_diversity_views_api
2.x tripal_natural_diversity.module | tripal_natural_diversity_views_api() |
3.x tripal_natural_diversity.module | tripal_natural_diversity_views_api() |
1.x tripal_natural_diversity.module | tripal_natural_diversity_views_api() |
Implements hook_views_api().
Essentially this hook tells drupal that there is views support for for this module which then includes tripal_natural_diversity.views.inc where all the views integration code is
Related topics
File
- legacy/
tripal_natural_diversity/ tripal_natural_diversity.module, line 89 - Basic function for the natural diversity module
Code
function tripal_natural_diversity_views_api() {
return array(
'api' => 3.0,
);
}