123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /**
- * @file
- * This file contains the basic functions needed for this drupal module.
- * The drupal tripal_contact 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_contact Contact Module
- * @ingroup tripal_modules
- * @{
- * Currently this module only provides support for integration with Drupal
- * views and some support for querying using the Tripal Core API.
- *
- * This module needs further development to support full management of
- * contact information within Chado, and full definitions for foreign
- * key relationships in Chado.
- * @}
- */
- require('api/tripal_contact.api.inc');
- /*************************************************************************
- * Implements hook_views_api()
- * Purpose: Essentially this hook tells drupal that there is views support for
- * for this module which then includes tripal_contact.views.inc where all the
- * views integration code is
- *
- * @ingroup tripal_contact
- */
- function tripal_contact_views_api() {
- return array(
- 'api' => 2.0,
- );
- }
|