function tripal_views_data

3.x tripal.views.inc tripal_views_data()

Describe various Tripal Core systems to Views

Related topics

File

tripal/tripal.views.inc, line 29
Integrates many of the core database tables with drupal views

Code

function tripal_views_data() {
  $data = array();
  // Job Management System
  tripal_views_data_jobs($data);
  tripal_views_data_tripal_entity($data);
  tripal_views_data_fields($data);

  $data['views']['tripal_area_collections'] = array(
    'title' => t('Tripal Content Data Collections'),
    'help' => t('Save Tripal content search results into a data collection for downloading or use with other tools.'),
    'area' => array(
      'handler' => 'tripal_views_handler_area_collections',
    ),
  );
  return $data;
}