tripal_organism_base.tpl.php

  1. 2.x tripal_organism/theme/templates/tripal_organism_base.tpl.php
  2. 3.x legacy/tripal_organism/theme/templates/tripal_organism_base.tpl.php
1 theme call to tripal_organism_base.tpl.php
tripal_organism_node_view in tripal_organism/includes/tripal_organism.chado_node.inc
Implements hook_node_view().

File

tripal_organism/theme/templates/tripal_organism_base.tpl.php
View source
  1. <?php
  2. $chado_version = chado_get_version(TRUE);
  3. $organism = $variables['node']->organism;
  4. $organism = chado_expand_var($organism,'field','organism.comment'); ?>
  5. <div class="tripal_organism-data-block-desc tripal-data-block-desc"></div><?php
  6. // generate the image tag
  7. $image = '';
  8. $image_url = tripal_get_organism_image_url($organism);
  9. if ($image_url) {
  10. $image = "<img class=\"tripal-organism-img\" src=\"$image_url\">";
  11. }
  12. // the $headers array is an array of fields to use as the colum headers.
  13. // additional documentation can be found here
  14. // https://api.drupal.org/api/drupal/includes%21theme.inc/function/theme_table/7
  15. // This table for the organism has a vertical header (down the first column)
  16. // so we do not provide headers here, but specify them in the $rows array below.
  17. $headers = array();
  18. // the $rows array contains an array of rows where each row is an array
  19. // of values for each column of the table in that row. Additional documentation
  20. // can be found here:
  21. // https://api.drupal.org/api/drupal/includes%21theme.inc/function/theme_table/7
  22. $rows = array();
  23. $infra = '';
  24. if ($chado_version > 1.2 and $organism->type_id) {
  25. $infra = $organism->type_id->name . ' <i>' . $organism->infraspecific_name . '</i>';
  26. }
  27. // full name row
  28. $rows[] = array(
  29. array(
  30. 'data' => 'Full Name',
  31. 'header' => TRUE,
  32. 'width' => '30%',
  33. ),
  34. '<i>' . $organism->genus . ' ' . $organism->species . '</i> ' . $infra
  35. );
  36. // genus row
  37. $rows[] = array(
  38. array(
  39. 'data' => 'Genus',
  40. 'header' => TRUE,
  41. 'width' => '30%',
  42. ),
  43. '<i>' . $organism->genus . '</i>'
  44. );
  45. // species row
  46. $rows[] = array(
  47. array(
  48. 'data' => 'Species',
  49. 'header' => TRUE
  50. ),
  51. '<i>' . $organism->species . '</i>'
  52. );
  53. if ($chado_version > 1.2) {
  54. $type_id = $organism->type_id ? $organism->type_id->name : '';
  55. // type_id row
  56. $rows[] = array(
  57. array(
  58. 'data' => 'Infraspecific Rank',
  59. 'header' => TRUE
  60. ),
  61. $type_id
  62. );
  63. // infraspecific name row
  64. $rows[] = array(
  65. array(
  66. 'data' => 'Infraspecific Name',
  67. 'header' => TRUE
  68. ),
  69. '<i>' . $organism->infraspecific_name . '</i>'
  70. );
  71. }
  72. // common name row
  73. $rows[] = array(
  74. array(
  75. 'data' => 'Common Name',
  76. 'header' => TRUE
  77. ),
  78. $organism->common_name,
  79. );
  80. // abbreviation row
  81. $rows[] = array(
  82. array(
  83. 'data' => 'Abbreviation',
  84. 'header' => TRUE
  85. ),
  86. $organism->abbreviation
  87. );
  88. // allow site admins to see the organism ID
  89. if (user_access('view ids')) {
  90. // Organism ID
  91. $rows[] = array(
  92. array(
  93. 'data' => 'Organism ID',
  94. 'header' => TRUE,
  95. 'class' => 'tripal-site-admin-only-table-row',
  96. ),
  97. array(
  98. 'data' => $organism->organism_id,
  99. 'class' => 'tripal-site-admin-only-table-row',
  100. ),
  101. );
  102. }
  103. // the $table array contains the headers and rows array as well as other
  104. // options for controlling the display of the table. Additional
  105. // documentation can be found here:
  106. // https://api.drupal.org/api/drupal/includes%21theme.inc/function/theme_table/7
  107. $table = array(
  108. 'header' => $headers,
  109. 'rows' => $rows,
  110. 'attributes' => array(
  111. 'id' => 'tripal_organism-table-base',
  112. 'class' => 'tripal-organism-data-table tripal-data-table',
  113. ),
  114. 'sticky' => FALSE,
  115. 'caption' => '',
  116. 'colgroups' => array(),
  117. 'empty' => '',
  118. );
  119. // once we have our table array structure defined, we call Drupal's theme_table()
  120. // function to generate the table.
  121. print theme_table($table); ?>
  122. <div style="text-align: justify"><?php print $image . $organism->comment?></div>