node--chado-organism.tpl.php 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. <?php
  2. // Purpose: This template provides the layout of the organism node (page)
  3. // using the same templates used for the various feature content blocks.
  4. //
  5. // To Customize the Featture Node Page:
  6. // - This Template: customize basic layout and which elements are included
  7. // - Using Panels: Override the node page using Panels3 and place the blocks
  8. // of content as you please. This method requires no programming. See
  9. // the Tripal User Guide for more details
  10. // - Block Templates: customize the content/layout of each block of stock
  11. // content. These templates are found in the tripal_stock subdirectory
  12. //
  13. // Variables Available:
  14. // - $node: a standard object which contains all the fields associated with
  15. // nodes including nid, type, title, taxonomy. It also includes stock
  16. // specific fields such as stock_name, uniquename, stock_type, synonyms,
  17. // properties, db_references, object_relationships, subject_relationships,
  18. // organism, etc.
  19. // NOTE: For a full listing of fields available in the node object the
  20. // print_r $node line below or install the Drupal Devel module which
  21. // provides an extra tab at the top of the node page labelled Devel
  22. $organism = $variables['node']->organism;
  23. // get the template settings
  24. $template_settings = theme_get_setting('tripal');
  25. // toggle the sidebar if desired
  26. $no_sidebar = 0;
  27. if (is_array($template_settings['tripal_no_sidebar']) and
  28. $template_settings['tripal_no_sidebar']['organism']) {
  29. $no_sidebar = 1;
  30. }
  31. if ($teaser) {
  32. print theme('tripal_organism_teaser', $variables);
  33. }
  34. else { ?>
  35. <script type="text/javascript">
  36. (function ($) {
  37. Drupal.behaviors.organismBehavior = {
  38. attach: function (context, settings){<?php
  39. // hide the resource sidbar if requested and strech the details section
  40. if ($no_sidebar) { ?>
  41. $(".tripal_toc").hide();
  42. $(".tripal_details").addClass("tripal_details_full");
  43. $(".tripal_details_full").removeClass("tripal_details"); <?php
  44. }
  45. // use default resource sidebar
  46. else { ?>
  47. $(".tripal-info-box").hide();
  48. // set the widths of the details and sidebar sections so they can work
  49. // seemlessly with any theme.
  50. total_width = $(".tripal_contents").width();
  51. details_width = (total_width * 0.70) - 52; // 52 == 20 x 2 left/right padding + 10 right margin + 2pt border
  52. toc_width = (total_width * 0.30) - 42; // 42 == 20 x 2 left/right padding + 2pt border
  53. // don't let sidebar get wider than 200px
  54. if (toc_width > 200) {
  55. details_width += toc_width - 200;
  56. toc_width = 200;
  57. }
  58. $('#tripal_organism_toc').width(toc_width);
  59. $('#tripal_organism_details').width(details_width); <?php
  60. } ?>
  61. // iterate through all of the info boxes and add their titles
  62. // to the table of contents
  63. $(".tripal-info-box-title").each(function(){
  64. var parent = $(this).parent();
  65. var id = $(parent).attr('id');
  66. var title = $(this).text();
  67. $('#tripal_organism_toc_list').append('<li><a href="#'+id+'" class="tripal_organism_toc_item">'+title+'</a></li>');
  68. });
  69. // when a title in the table of contents is clicked, then
  70. // show the corresponding item in the details box
  71. $(".tripal_organism_toc_item").click(function(){
  72. $(".tripal-info-box").hide();
  73. href = $(this).attr('href');
  74. if(href.match(/^#/)){
  75. //alert("correct: " + href);
  76. }
  77. else{
  78. tmp = href.replace(/^.*?#/, "#");
  79. href = tmp;
  80. //alert("fixed: " + href);
  81. }
  82. $(href).fadeIn('slow');
  83. // we want to make sure our table of contents and the details
  84. // box stay the same height
  85. $("#tripal_organism_toc").height($(href).parent().height());
  86. return false;
  87. });
  88. // we want the base details to show up when the page is first shown
  89. // unless we're using the feature browser then we want that page to show
  90. var block = window.location.href.match(/[\?|\&]block=(.+?)\&/)
  91. if(block == null){
  92. block = window.location.href.match(/[\?|\&]block=(.+)/)
  93. }
  94. if(block != null){
  95. $("#tripal_organism-"+block[1]+"-box").show();
  96. }
  97. else if(window.location.href.match(/\?page=\d+/)){
  98. $("#tripal_organism-feature_browser-box").show();
  99. }
  100. else {
  101. $("#tripal_organism-base-box").show();
  102. }
  103. $("#tripal_organism_toc").height($("#tripal_organism-base-box").parent().height());
  104. }
  105. };
  106. })(jQuery);
  107. </script>
  108. <div id="tripal_organism_content" class="tripal_contents">
  109. <div id="tripal_organism_details" class="tripal_details">
  110. <!-- Resource Blocks CCK elements --> <?php
  111. if (property_exists($node, 'field_resource_titles')) {
  112. for ($i = 0; $i < count($node->field_resource_titles); $i++){
  113. if ($node->field_resource_titles[$i]['value']){ ?>
  114. <div id="tripal_organism-resource_<?php print $i?>-box" class="tripal_organism-info-box tripal-info-box">
  115. <div class="tripal_organism-info-box-title tripal-info-box-title"><?php print $node->field_resource_titles[$i]['value'] ?></div>
  116. <?php print $node->field_resource_blocks[$i]['value']; ?>
  117. </div> <?php
  118. }
  119. }
  120. }?>
  121. <!-- Let modules add more content -->
  122. <?php
  123. foreach ($content as $key => $values) {
  124. if (array_key_exists('#value', $values)) {
  125. print $content[$key]['#value'];
  126. }
  127. }
  128. ?>
  129. </div>
  130. <!-- Table of contents -->
  131. <div id="tripal_organism_toc" class="tripal_toc">
  132. <div id="tripal_organism_toc_title" class="tripal_toc_title">Resources</i></div>
  133. <span id="tripal_organism_toc_desc" class="tripal_toc_desc"></span>
  134. <ul id="tripal_organism_toc_list" class="tripal_toc_list">
  135. <!-- Resource Links CCK elements --><?php
  136. if(property_exists($node, 'field_resource_links')) {
  137. for($i = 0; $i < count($node->field_resource_links); $i++){
  138. if($node->field_resource_links[$i]['value']){
  139. $matches = preg_split("/\|/",$node->field_resource_links[$i]['value']);?>
  140. <li><a href="<?php print $matches[1] ?>" target="_blank"><?php print $matches[0] ?></a></li><?php
  141. }
  142. }
  143. }
  144. ?>
  145. </ul>
  146. </div>
  147. </div>
  148. <?php
  149. } ?>