tripal_contact.module 839 B

123456789101112131415161718192021222324252627282930313233
  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. /**
  11. * @defgroup tripal_contact Contact Module
  12. * @{
  13. * Provides functions for managing chado contacts
  14. * @}
  15. */
  16. require('tripal_contact.api.inc');
  17. /*************************************************************************
  18. * Implements hook_views_api()
  19. * Purpose: Essentially this hook tells drupal that there is views support for
  20. * for this module which then includes tripal_contact.views.inc where all the
  21. * views integration code is
  22. *
  23. * @ingroup tripal_contact
  24. */
  25. function tripal_contact_views_api() {
  26. return array(
  27. 'api' => 2.0,
  28. );
  29. }