tripal_pub_base.tpl.php 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254
  1. <?php
  2. /*
  3. * Note, the table generated by this template that lists the publication
  4. * details is generic. It can be customized to look different for different
  5. * publication types. To create a custom template for a given type, create a
  6. * new file in the pub_types directory. Name the file using the name of the
  7. * type. The name must be all lower-case and spaces should be replaced with
  8. * and underscore symbol. For example, to create a custom table for the
  9. * "Conference Proceedings", create the file conference_proceedings.inc inside
  10. * of the pub_types folder. Cut and paste the code below that generates the table
  11. * structure into the new file. Then edit to your liking.
  12. *
  13. */
  14. $pub = $variables['node']->pub;
  15. // expand the title
  16. $pub = chado_expand_var($pub, 'field', 'pub.title');
  17. $pub = chado_expand_var($pub, 'field', 'pub.volumetitle');
  18. // get the citation
  19. $values = array(
  20. 'pub_id' => $pub->pub_id,
  21. 'type_id' => array(
  22. 'name' => 'Citation',
  23. ),
  24. );
  25. $citation = chado_generate_var('pubprop', $values);
  26. $citation = chado_expand_var($citation, 'field', 'pubprop.value');
  27. // get the abstract
  28. $values = array(
  29. 'pub_id' => $pub->pub_id,
  30. 'type_id' => array(
  31. 'name' => 'Abstract',
  32. ),
  33. );
  34. $abstract = chado_generate_var('pubprop', $values);
  35. $abstract = chado_expand_var($abstract, 'field', 'pubprop.value');
  36. $abstract_text = '';
  37. if ($abstract) {
  38. $abstract_text = htmlspecialchars($abstract->value);
  39. }
  40. // get the author list
  41. $values = array(
  42. 'pub_id' => $pub->pub_id,
  43. 'type_id' => array(
  44. 'name' => 'Authors',
  45. ),
  46. );
  47. $authors = chado_generate_var('pubprop', $values);
  48. $authors = chado_expand_var($authors, 'field', 'pubprop.value');
  49. $authors_list = 'N/A';
  50. if ($authors) {
  51. $authors_list = $authors->value;
  52. }
  53. // get the first database cross-reference with a url
  54. $options = array('return_array' => 1);
  55. $pub = chado_expand_var($pub, 'table', 'pub_dbxref', $options);
  56. $dbxref = NULL;
  57. if ($pub->pub_dbxref) {
  58. foreach ($pub->pub_dbxref as $index => $pub_dbxref) {
  59. if ($pub_dbxref->dbxref_id->db_id->urlprefix) {
  60. $dbxref = $pub_dbxref->dbxref_id;
  61. }
  62. }
  63. }
  64. // get the URL
  65. // get the author list
  66. $values = array(
  67. 'pub_id' => $pub->pub_id,
  68. 'type_id' => array(
  69. 'name' => 'URL',
  70. ),
  71. );
  72. $options = array('return_array' => 1);
  73. $urls = chado_generate_var('pubprop', $values, $options);
  74. $urls = chado_expand_var($urls, 'field', 'pubprop.value');
  75. $url = '';
  76. if (count($urls) > 0) {
  77. $url = $urls[0]->value;
  78. }?>
  79. <div class="tripal_pub-data-block-desc tripal-data-block-desc"></div> <?php
  80. // to simplify the template, we have a subdirectory named 'pub_types'. This directory
  81. // should have include files each specific to a publication type. If the type is
  82. // not present then the base template will be used, otherwise the template in the
  83. // include file is used.
  84. $inc_name = strtolower(preg_replace('/ /', '_', $pub->type_id->name)) . '.inc';
  85. $inc_path = drupal_realpath(drupal_get_path('module', 'tripal_pub') . "/theme/tripal_pub/pub_types/$inc_name");
  86. if (file_exists($inc_path)) {
  87. require_once "pub_types/$inc_name";
  88. }
  89. else {
  90. // ========================================================================
  91. // TO CUSTOMIZE A SPECIFIC PUBLICATION TYPE, CUT-AND-PASTE THE CODE
  92. // BELOW INTO A NEW FILE WITH THE SAME NAME AS THE TYPE (SEE INSTRUCTIONS
  93. // ABOVE), AND EDIT.
  94. // ========================================================================
  95. // the $headers array is an array of fields to use as the colum headers.
  96. // additional documentation can be found here
  97. // https://api.drupal.org/api/drupal/includes%21theme.inc/function/theme_table/7
  98. // This table for the analysis has a vertical header (down the first column)
  99. // so we do not provide headers here, but specify them in the $rows array below.
  100. $headers = array();
  101. // the $rows array contains an array of rows where each row is an array
  102. // of values for each column of the table in that row. Additional documentation
  103. // can be found here:
  104. // https://api.drupal.org/api/drupal/includes%21theme.inc/function/theme_table/7
  105. $rows = array();
  106. // Title row
  107. $title = '';
  108. if ($url) {
  109. $title = l(htmlspecialchars($pub->title), $url, array('attributes' => array('target' => '_blank')));
  110. }
  111. elseif ($dbxref and $dbxref->db_id->urlprefix) {
  112. $title = l(htmlspecialchars($pub->title), $dbxref->db_id->urlprefix . $dbxref->accession, array('attributes' => array('target' => '_blank')));
  113. }
  114. else {
  115. $title = htmlspecialchars($pub->title);
  116. }
  117. $rows[] = array(
  118. array(
  119. 'data' => 'Title',
  120. 'header' => TRUE,
  121. 'width' => '20%',
  122. ),
  123. $title,
  124. );
  125. // Authors row
  126. $rows[] = array(
  127. array(
  128. 'data' => 'Authors',
  129. 'header' => TRUE
  130. ),
  131. $authors_list,
  132. );
  133. // Type row
  134. $rows[] = array(
  135. array(
  136. 'data' => 'Type',
  137. 'header' => TRUE
  138. ),
  139. $pub->type_id->name,
  140. );
  141. // Media Title
  142. $rows[] = array(
  143. array(
  144. 'data' => 'Media Title',
  145. 'header' => TRUE,
  146. 'nowrap' => 'nowrap'
  147. ),
  148. $pub->series_name,
  149. );
  150. // Volume
  151. $rows[] = array(
  152. array(
  153. 'data' => 'Volume',
  154. 'header' => TRUE
  155. ),
  156. $pub->volume ? $pub->volume : 'N/A',
  157. );
  158. // Issue
  159. $rows[] = array(
  160. array(
  161. 'data' => 'Issue',
  162. 'header' => TRUE
  163. ),
  164. $pub->issue ? $pub->issue : 'N/A'
  165. );
  166. // Year
  167. $rows[] = array(
  168. array(
  169. 'data' => 'Year',
  170. 'header' => TRUE
  171. ),
  172. $pub->pyear
  173. );
  174. // Pages
  175. $rows[] = array(
  176. array(
  177. 'data' => 'Page(s)',
  178. 'header' => TRUE
  179. ),
  180. $pub->pages ? $pub->pages : 'N/A'
  181. );
  182. // Citation row
  183. $rows[] = array(
  184. array(
  185. 'data' => 'Citation',
  186. 'header' => TRUE
  187. ),
  188. htmlspecialchars($citation->value)
  189. );
  190. // allow site admins to see the pub ID
  191. if (user_access('view ids')) {
  192. // Pub ID
  193. $rows[] = array(
  194. array(
  195. 'data' => 'Pub ID',
  196. 'header' => TRUE,
  197. 'class' => 'tripal-site-admin-only-table-row',
  198. ),
  199. array(
  200. 'data' => $pub->pub_id,
  201. 'class' => 'tripal-site-admin-only-table-row',
  202. ),
  203. );
  204. }
  205. // Is Obsolete Row
  206. if($pub->is_obsolete == TRUE){
  207. $rows[] = array(
  208. array(
  209. 'data' => '<div class="tripal_pub-obsolete">This publication is obsolete</div>',
  210. 'colspan' => 2
  211. ),
  212. );
  213. }
  214. // the $table array contains the headers and rows array as well as other
  215. // options for controlling the display of the table. Additional
  216. // documentation can be found here:
  217. // https://api.drupal.org/api/drupal/includes%21theme.inc/function/theme_table/7
  218. $table = array(
  219. 'header' => $headers,
  220. 'rows' => $rows,
  221. 'attributes' => array(
  222. 'id' => 'tripal_pub-table-base',
  223. 'class' => 'tripal-data-table'
  224. ),
  225. 'sticky' => FALSE,
  226. 'caption' => '',
  227. 'colgroups' => array(),
  228. 'empty' => '',
  229. );
  230. // once we have our table array structure defined, we call Drupal's theme_table()
  231. // function to generate the table.
  232. print theme_table($table);
  233. if ($abstract_text) { ?>
  234. <p><b>Abstract</b></p>
  235. <div style="text-align: justify"><?php print $abstract_text; ?></div> <?php
  236. }
  237. // ========================================================================
  238. // END OF CUT-AND-PASTE REGION
  239. // ========================================================================
  240. }