tripal_contact.module 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  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. * @ingroup tripal_modules
  13. * @{
  14. * Currently this module only provides support for integration with Drupal
  15. * views and some support for querying using the Tripal Core API.
  16. *
  17. * This module needs further development to support full management of
  18. * contact information within Chado, and full definitions for foreign
  19. * key relationships in Chado.
  20. * @}
  21. */
  22. require('api/tripal_contact.api.inc');
  23. /*************************************************************************
  24. * Implements hook_views_api()
  25. * Purpose: Essentially this hook tells drupal that there is views support for
  26. * for this module which then includes tripal_contact.views.inc where all the
  27. * views integration code is
  28. *
  29. * @ingroup tripal_contact
  30. */
  31. function tripal_contact_views_api() {
  32. return array(
  33. 'api' => 2.0,
  34. );
  35. }