<?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,
  );
}