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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  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. if ($no_sidebar) { ?>
  40. // hide the resource side bar and strech the details section
  41. $(".tripal_toc").hide();
  42. $(".tripal_details").addClass("tripal_details_full");
  43. $(".tripal_details_full").removeClass("tripal_details"); <?php
  44. } else { ?>
  45. // use default resource sidebar
  46. $(".tripal-info-box").hide(); <?php
  47. } ?>
  48. // iterate through all of the info boxes and add their titles
  49. // to the table of contents
  50. $(".tripal-info-box-title").each(function(){
  51. var parent = $(this).parent();
  52. var id = $(parent).attr('id');
  53. var title = $(this).text();
  54. $('#tripal_organism_toc_list').append('<li><a href="#'+id+'" class="tripal_organism_toc_item">'+title+'</a></li>');
  55. });
  56. // when a title in the table of contents is clicked, then
  57. // show the corresponding item in the details box
  58. $(".tripal_organism_toc_item").click(function(){
  59. $(".tripal-info-box").hide();
  60. href = $(this).attr('href');
  61. if(href.match(/^#/)){
  62. //alert("correct: " + href);
  63. }
  64. else{
  65. tmp = href.replace(/^.*?#/, "#");
  66. href = tmp;
  67. //alert("fixed: " + href);
  68. }
  69. $(href).fadeIn('slow');
  70. // we want to make sure our table of contents and the details
  71. // box stay the same height
  72. $("#tripal_organism_toc").height($(href).parent().height());
  73. return false;
  74. });
  75. // we want the base details to show up when the page is first shown
  76. // unless we're using the feature browser then we want that page to show
  77. var block = window.location.href.match(/[\?|\&]block=(.+?)\&/)
  78. if(block == null){
  79. block = window.location.href.match(/[\?|\&]block=(.+)/)
  80. }
  81. if(block != null){
  82. $("#tripal_organism-"+block[1]+"-box").show();
  83. }
  84. else if(window.location.href.match(/\?page=\d+/)){
  85. $("#tripal_organism-feature_browser-box").show();
  86. }
  87. else {
  88. $("#tripal_organism-base-box").show();
  89. }
  90. $("#tripal_organism_toc").height($("#tripal_organism-base-box").parent().height());
  91. }
  92. };
  93. })(jQuery);
  94. </script>
  95. <div id="tripal_organism_details" class="tripal_details">
  96. <!-- Basic Details Theme -->
  97. <?php print theme('tripal_organism_base', $variables); ?>
  98. <!-- Resource Blocks CCK elements --> <?php
  99. if(property_exists($node, 'field_resource_titles')) {
  100. for($i = 0; $i < count($node->field_resource_titles); $i++){
  101. if($node->field_resource_titles[$i]['value']){ ?>
  102. <div id="tripal_organism-resource_<?php print $i?>-box" class="tripal_organism-info-box tripal-info-box">
  103. <div class="tripal_organism-info-box-title tripal-info-box-title"><?php print $node->field_resource_titles[$i]['value'] ?></div>
  104. <?php print $node->field_resource_blocks[$i]['value']; ?>
  105. </div> <?php
  106. }
  107. }
  108. }?>
  109. <!-- Let modules add more content -->
  110. <?php print $content ?>
  111. </div>
  112. <!-- Table of contents -->
  113. <div id="tripal_organism_toc" class="tripal_toc">
  114. <div id="tripal_organism_toc_title" class="tripal_toc_title">Resources</i></div>
  115. <span id="tripal_organism_toc_desc" class="tripal_toc_desc"></span>
  116. <ul id="tripal_organism_toc_list" class="tripal_toc_list">
  117. <!-- Resource Links CCK elements --><?php
  118. if(property_exists($node, 'field_resource_links')) {
  119. for($i = 0; $i < count($node->field_resource_links); $i++){
  120. if($node->field_resource_links[$i]['value']){
  121. $matches = preg_split("/\|/",$node->field_resource_links[$i]['value']);?>
  122. <li><a href="<?php print $matches[1] ?>" target="_blank"><?php print $matches[0] ?></a></li><?php
  123. }
  124. }
  125. }
  126. // ADD CUSTOMIZED <li> LINKS HERE
  127. ?>
  128. </ul>
  129. </div> <?php
  130. } ?>