tripal_contact.module 695 B

123456789101112131415161718192021222324
  1. <?php
  2. /**
  3. * @file
  4. * This file contains the basic functions needed for this drupal module.
  5. * The drupal tripal_contact 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. require('tripal_contact.api.inc');
  11. /*************************************************************************
  12. * Implements hook_views_api()
  13. * Purpose: Essentially this hook tells drupal that there is views support for
  14. * for this module which then includes tripal_contact.views.inc where all the
  15. * views integration code is
  16. */
  17. function tripal_contact_views_api() {
  18. return array(
  19. 'api' => 2.0,
  20. );
  21. }