tripal_phenotype.module

  1. 2.x tripal_phenotype/tripal_phenotype.module
  2. 3.x legacy/tripal_phenotype/tripal_phenotype.module
  3. 1.x tripal_phenotype/tripal_phenotype.module

This file contains the basic functions needed for this drupal module. The drupal tripal_phenotype module maps directly to the chado X module.

For documentation regarding the Chado X module:

tripal_phenotype Phenotype Module

See also

http://gmod.org/wiki/Chado_General_Module

File

tripal_phenotype/tripal_phenotype.module
View source
  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. * @defgroup tripal_phenotype Phenotype Module
  11. * @ingroup tripal_modules
  12. */
  13. /*************************************************************************
  14. * Implements hook_views_api()
  15. * Purpose: Essentially this hook tells drupal that there is views support for
  16. * for this module which then includes tripal_phenotype.views.inc where all the
  17. * views integration code is
  18. *
  19. * @ingroup tripal_phenotype
  20. */
  21. function tripal_phenotype_views_api() {
  22. return array(
  23. 'api' => 2.0,
  24. );
  25. }

Related topics