<?php /** * @file * This file contains the basic functions needed for this drupal module. * The drupal tripal_pub module maps directly to the chado X module. * * For documentation regarding the Chado X module: * @see http://gmod.org/wiki/Chado_General_Module */ /************************************************************************* * Implements hook_views_api() * Purpose: Essentially this hook tells drupal that there is views support for * for this module which then includes tripal_pub.views.inc where all the * views integration code is */ function tripal_pub_views_api() { return array( 'api' => 2.0, ); }