function tripal_bulk_loader_views_api
2.x tripal_bulk_loader.module | tripal_bulk_loader_views_api() |
3.x tripal_bulk_loader.module | tripal_bulk_loader_views_api() |
Implements hook_views_api().
Essentially this hook tells drupal that there is views support for for this module which then includes tripal_views.views.inc where all the views integration code is.
Related topics
File
- tripal_bulk_loader/
tripal_bulk_loader.module, line 276 - Provides general functions for the tripal bulk loader.
Code
function tripal_bulk_loader_views_api() {
return array(
'api' => 3.0,
);
}