function tripal_feature_views_api
2.x tripal_feature.module | tripal_feature_views_api() |
3.x tripal_feature.module | tripal_feature_views_api() |
1.x tripal_feature.module | tripal_feature_views_api() |
Implements hook_views_api()
Purpose: Essentially this hook tells drupal that there is views support for for this module which then includes tripal_db.views.inc where all the views integration code is
Related topics
File
- tripal_feature/
tripal_feature.module, line 51 - @todo Add file header description
Code
function tripal_feature_views_api() {
return array(
'api' => 2.0,
);
}