tripal_phenotype.module
- 2.x tripal_phenotype/tripal_phenotype.module
- 3.x legacy/tripal_phenotype/tripal_phenotype.module
- 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.moduleView source
- <?php
-
- /**
- * @file
- * 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:
- * @see http://gmod.org/wiki/Chado_General_Module
- *
- * @defgroup tripal_phenotype Phenotype Module
- * @ingroup tripal_modules
- */
-
- /*************************************************************************
- * Implements hook_views_api()
- * Purpose: Essentially this hook tells drupal that there is views support for
- * for this module which then includes tripal_phenotype.views.inc where all the
- * views integration code is
- *
- * @ingroup tripal_phenotype
- */
- function tripal_phenotype_views_api() {
- return array(
- 'api' => 2.0,
- );
- }