function tripal_project_views_api

2.x tripal_project.module tripal_project_views_api()
3.x tripal_project.module tripal_project_views_api()
1.x tripal_project.module tripal_project_views_api()

Implements hook_views_api()

Purpose: Essentially this hook tells drupal that there is views support for for this module which then includes tripal_project.views.inc where all the views integration code is

Related topics

File

tripal_project/tripal_project.module, line 28
This file contains the basic functions needed for this drupal module. The drupal tripal_project module maps directly to the chado general module.

Code

function tripal_project_views_api() {
  return array(
    'api' => 2.0,
  );
}