tripal_entities.views.inc 314 B

12345678910111213141516
  1. <?php
  2. /**
  3. * @file
  4. * This file contains the basic functions for views integration of
  5. * chado/tripal feature tables
  6. */
  7. /**
  8. * Implements hook_views_api().
  9. */
  10. function tripal_entities_views_api() {
  11. return array(
  12. 'api' => 3,
  13. 'path' => drupal_get_path('module', 'tripal_entities') . '/views',
  14. );
  15. }