nd_reagent.views.inc 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. <?php
  2. /*************************************************************************
  3. * @file: THIS IS A TEMPLATE AND SHOULD NOT BE INCLUDED IN THE MODULE CODE
  4. *
  5. * - Every instance of nd_reagent should be replaced with the name of your table
  6. * - If this is a base table (you want a view where every row is a row from this table)
  7. * then change $data['nd_reagent']['table'] to $data['nd_reagent']['table']['base']
  8. * and $data['nd_reagent']['table']['database'] to $data['nd_reagent']['table']['base']['database']
  9. * - Relationships between this table and others: YYY is the table you are trying to join to this
  10. * one. You want to join a table to this one if this table contains a foreign key to the other
  11. * table. If the join between this table and another is through a linking table
  12. * (ie: library-nd_reagent/YYY => library_feature-XY => feature-nd_reagent/YYY) then make the join in both
  13. * directions (ie: in the file nd_reagent.views.inc and the file YYY.views.inc
  14. * - Create a field definition for each field in this table using the example fields already
  15. * listed. Match the type of the database field to the field definition listed below.
  16. * (ie: for a text/varchar field from the database use plain_text_field below)
  17. *
  18. * NOTE: Creating the table definition file is not enough. You also need to call the
  19. * retrieve_nd_reagent_views_data() function from ../tripal_natural_diversity.views.inc:tripal_natural_diversity_views_data()
  20. * by adding the following line:
  21. * $data = array_merge($data, retrieve_nd_reagent_views_data());
  22. * to the function and including the file directly above the function (blow the function
  23. * header by adding:
  24. * require_once('views/nd_reagent.views.inc');
  25. *
  26. * REMOVE THIS COMMENT IN THE COPY!
  27. */
  28. /**
  29. * @file
  30. * This file defines the data array for a given chado table. This array
  31. * is merged into a larger array containing definitions of all tables associated
  32. * with this module in:
  33. * @see tripal_natural_diversity.views.inc --in tripal_natural_diversity_views_data()
  34. *
  35. * Documentation on views integration can be found at
  36. * http://views2.logrus.com/doc/html/index.html.
  37. */
  38. /*************************************************************************
  39. * Purpose: this function returns the portion of the data array
  40. * which describes the nd_reagent table, it's fields and any joins between it and other tables
  41. * @see tripal_natural_diversity_views_data() --in tripal_natural_diversity.views.inc
  42. *
  43. * Table: nd_reagent
  44. * @code
  45. CREATE TABLE nd_reagent (
  46. nd_reagent_id serial PRIMARY KEY NOT NULL,
  47. name character varying(80) NOT NULL,
  48. type_id integer NOT NULL references cvterm (cvterm_id) on delete cascade INITIALLY DEFERRED,
  49. feature_id integer
  50. );
  51. * @endcode
  52. */
  53. function retrieve_nd_reagent_views_data() {
  54. global $db_url;
  55. $data = array();
  56. // if the chado database is not local to the drupal database
  57. // then we need to set the database name. This should always
  58. // be 'chado'.
  59. if(is_array($db_url) and array_key_exists('chado',$db_url)){
  60. $database = 'chado';
  61. }
  62. //Basic table definition-----------------------------------
  63. $data['nd_reagent']['table']['group'] = t('Chado ND Reagent');
  64. $data['nd_reagent']['table'] = array(
  65. 'field' => 'nd_reagent_id',
  66. 'title' => t('Chado ND Reagent'),
  67. 'help' => t('Enter some user-friendly description of this tables purpose to the user.'),
  68. );
  69. if($database){
  70. $data['nd_reagent']['table']['database'] = $database;
  71. }
  72. //Relationship Definitions---------------------------------
  73. //Join: nd_reagent => YYY
  74. $data['nd_reagent']['table']['join']['YYY'] = array(
  75. 'left_field' => 'primary key in YYY table',
  76. 'field' => 'foreign key in nd_reagent table',
  77. );
  78. //Join: nd_reagent => XY => YYY
  79. $data['nd_reagent']['table']['join']['XY'] = array(
  80. 'left_field' => 'matching nd_reagent key in the XY table',
  81. 'field' => 'foreign key in nd_reagent table',
  82. );
  83. $data['nd_reagent']['table']['join']['YYY'] => array(
  84. 'left_table' => 'XY',
  85. 'left_field' => 'matching nd_reagent key in the XY table',
  86. 'field' => 'foreign key in nd_reagent table',
  87. );
  88. $data['XY']['table']['join']['YYY'] = array(
  89. 'left_field' => 'foreign key in YYY table',
  90. 'field' => 'matching YYY key in the XY table',
  91. );
  92. //Table Field Definitions----------------------------------
  93. //Field: nd_reagent_id (primary key)
  94. $data['nd_reagent']['field_name'] = array(
  95. 'title' => t('nd_reagent Primary Key'),
  96. 'help' => t('A unique index for every nd_reagent.'),
  97. 'field' => array(
  98. 'handler' => 'views_handler_field_numeric',
  99. 'click sortable' => TRUE,
  100. ),
  101. 'sort' => array(
  102. 'handler' => 'views_handler_sort',
  103. ),
  104. 'filter' => array(
  105. 'handler' => 'views_handler_filter_numeric',
  106. ),
  107. );
  108. /*.......................................................
  109. * Beginning of Example Field definitions
  110. * Remove this section when done
  111. */
  112. //Field: plain_text_field (chado datatype)
  113. $data['nd_reagent']['plain_text_field'] = array(
  114. 'title' => t('Human-Readable Name'),
  115. 'help' => t('Description of this field.'),
  116. 'field' => array(
  117. 'handler' => 'views_handler_field',
  118. 'click sortable' => TRUE,
  119. ),
  120. 'sort' => array(
  121. 'handler' => 'views_handler_sort',
  122. ),
  123. 'filter' => array(
  124. 'handler' => 'views_handler_filter_string',
  125. ),
  126. 'argument' => array(
  127. 'handler' => 'views_handler_argument_string',
  128. ),
  129. );
  130. //Field: numeric_field (chado datatype)
  131. $data['nd_reagent']['numeric_field'] = array(
  132. 'title' => t('Human-Readable Name'),
  133. 'help' => t('Description of this field.'),
  134. 'field' => array(
  135. 'handler' => 'views_handler_field_numeric',
  136. 'click sortable' => TRUE,
  137. ),
  138. 'sort' => array(
  139. 'handler' => 'views_handler_sort',
  140. ),
  141. 'filter' => array(
  142. 'handler' => 'views_handler_filter_numeric',
  143. ),
  144. );
  145. //Field: boolean_field (chado datatype)
  146. $data['nd_reagent']['boolean_field'] = array(
  147. 'title' => t('Human-Readable Name'),
  148. 'help' => t('Description of this field.'),
  149. 'field' => array(
  150. 'handler' => 'views_handler_field_boolean',
  151. 'click sortable' => TRUE,
  152. ),
  153. 'sort' => array(
  154. 'handler' => 'views_handler_sort',
  155. ),
  156. 'filter' => array(
  157. 'handler' => 'views_handler_filter_boolean_operator',
  158. ),
  159. );
  160. //Field: unix_timestamp (chado datatype)
  161. $data['nd_reagent']['unix_timestamp'] = array(
  162. 'title' => t('Human-Readable Name'),
  163. 'help' => t('Description of this field.'),
  164. 'field' => array(
  165. 'handler' => 'views_handler_field_date',
  166. 'click sortable' => TRUE,
  167. ),
  168. 'sort' => array(
  169. 'handler' => 'views_handler_sort_date',
  170. ),
  171. 'filter' => array(
  172. 'handler' => 'views_handler_filter_date',
  173. ),
  174. );
  175. //Field: human_readable_date (chado datatype)
  176. $data['nd_reagent']['human_readable_date'] = array(
  177. 'title' => t('Human-Readable Name'),
  178. 'help' => t('Description of this field.'),
  179. 'field' => array(
  180. 'handler' => 'views_handler_field_readble_date',
  181. 'click sortable' => TRUE,
  182. ),
  183. 'sort' => array(
  184. 'handler' => 'views_handler_sort_date',
  185. ),
  186. );
  187. /*
  188. * End of Example Field definitions
  189. *......................................................./
  190. return $data;
  191. }