123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- <?php
- /**
- * Purpose: this function returns the portion of the data array
- * which describes the chado_library drupal table, it's fields and any joins between it and other tables
- * @see tripal_library_views_data() --in tripal_library.views.inc
- *
- * The main need for description of this table to views is to join chado data with drupal nodes
- *
- * @ingroup tripal_library_views
- */
- function retrieve_chado_library_views_data () {
- global $db_url;
- $data = array();
-
- // if the chado database is not local to the drupal database
- // then we need to set the database name. This should always
- // be 'chado'.
- if(is_array($db_url) and array_key_exists('chado',$db_url)){
- // return empty data array b/c if chado is external then no join to the nodetable can be made
- return $data;
- }
- // Basic table definition
- $data['chado_library']['table'] = array(
- 'field' => 'nid',
- 'group' => 'Chado Library'
- );
-
- $data['chado_library']['nid'] = array(
- 'title' => t('Library Node ID'),
- 'help' => t('The node ID for this library'),
- 'field' => array(
- 'handler' => 'views_handler_field_numeric',
- 'click sortable' => TRUE,
- ),
- 'filter' => array(
- 'handler' => 'views_handler_filter_numeric',
- ),
- 'sort' => array(
- 'handler' => 'views_handler_sort',
- ),
- );
- // Note: No joins need to be made from $data['library']['table']
-
- // Join the chado library table to library
- $data['chado_library']['table']['join']['library'] = array(
- 'left_field' => 'library_id',
- 'field' => 'library_id',
- );
-
- // Join the node table to chado library
- $data['node']['table']['join']['chado_library'] = array(
- 'left_field' => 'nid',
- 'field' => 'nid',
- );
-
- // Join the node table to library
- $data['node']['table']['join']['library'] = array(
- 'left_table' => 'chado_library',
- 'left_field' => 'nid',
- 'field' => 'nid',
- );
- // Add relationship between chado_library and library
- $data['chado_library']['library_nid'] = array(
- 'group' => 'Library',
- 'title' => 'Library Node',
- 'help' => 'Links Chado Library Fields/Data to the Nodes in the current View.',
- 'real field' => 'library_id',
- 'relationship' => array(
- 'handler' => 'views_handler_relationship',
- 'title' => t('Chado => Library'),
- 'label' => t('Chado => Library'),
- 'real field' => 'library_id',
- 'base' => 'library',
- 'base field' => 'library_id'
- ),
- );
- // Add node relationship to library
- $data['chado_library']['library_chado_nid'] = array(
- 'group' => 'Library',
- 'title' => 'Library Node',
- 'help' => 'Links Chado Library Fields/Data to the Nodes in the current View.',
- 'real field' => 'nid',
- 'relationship' => array(
- 'handler' => 'views_handler_relationship',
- 'title' => t('Chado => Node'),
- 'label' => t('Chado => Node'),
- 'real field' => 'nid',
- 'base' => 'node',
- 'base field' => 'nid'
- ),
- );
-
- return $data;
- }
|