tripal_phenotype.module 661 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * @file
  4. * This file contains the basic functions needed for this drupal module.
  5. * The drupal tripal_phenotype module maps directly to the chado X module.
  6. *
  7. * For documentation regarding the Chado X module:
  8. * @see http://gmod.org/wiki/Chado_General_Module
  9. */
  10. /*************************************************************************
  11. * Implements hook_views_api()
  12. * Purpose: Essentially this hook tells drupal that there is views support for
  13. * for this module which then includes tripal_phenotype.views.inc where all the
  14. * views integration code is
  15. */
  16. function tripal_phenotype_views_api() {
  17. return array(
  18. 'api' => 2.0,
  19. );
  20. }