node--chado-analysis.tpl.php 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137
  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. $analysis = $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']['analysis']) {
  29. $no_sidebar = 1;
  30. }
  31. if ($teaser) {
  32. print theme('tripal_analysis_teaser', $variables);
  33. }
  34. else { ?>
  35. <script type="text/javascript">
  36. (function ($) {
  37. Drupal.behaviors.analysisBehavior = {
  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. // hide all tripal info boxes at the start
  49. $(".tripal-info-box").hide();
  50. // iterate through all of the info boxes and add their titles
  51. // to the table of contents
  52. $(".tripal-info-box-title").each(function(){
  53. var parent = $(this).parent();
  54. var id = $(parent).attr('id');
  55. var title = $(this).text();
  56. $('#tripal_analysis_toc_list').append('<li><a href="#'+id+'" class="tripal_analysis_toc_item">'+title+'</a></li>');
  57. });
  58. // when a title in the table of contents is clicked, then
  59. // show the corresponding item in the details box
  60. $(".tripal_analysis_toc_item").click(function(){
  61. $(".tripal-info-box").hide();
  62. href = $(this).attr('href');
  63. $(href).fadeIn('slow');
  64. // we want to make sure our table of contents and the details
  65. // box stay the same height
  66. $("#tripal_analysis_toc").height($(href).parent().height());
  67. return false;
  68. });
  69. // we want the base details to show up when the page is first shown
  70. // unless the user specified a specific block
  71. var block = window.location.href.match(/[\?|\&]block=(.+?)\&/)
  72. if(block == null){
  73. block = window.location.href.match(/[\?|\&]block=(.+)/)
  74. }
  75. if(block != null){
  76. $("#tripal_analysis-"+block[1]+"-box").show();
  77. } else {
  78. $("#tripal_analysis-base-box").show();
  79. }
  80. // make the height of the table of contents match the height of the details box
  81. $("#tripal_analysis_toc").height($("#tripal_analysis-base-box").parent().height());
  82. }
  83. };
  84. })(jQuery);
  85. </script>
  86. <div id="tripal_analysis_details" class="tripal_details">
  87. <!-- Basic Details Theme -->
  88. <?php print theme('tripal_analysis_base',$node); ?>
  89. <!-- Resource Blocks CCK elements --><?php
  90. for($i = 0; $i < count($node->field_resource_titles); $i++){
  91. if($node->field_resource_titles[$i]['value']){ ?>
  92. <div id="tripal_analysis-resource_<?php print $i?>-box" class="tripal_analysis-info-box tripal-info-box">
  93. <div class="tripal_analysis-info-box-title tripal-info-box-title"><?php print $node->field_resource_titles[$i]['value'] ?></div>
  94. <?php print $node->field_resource_blocks[$i]['value']; ?>
  95. </div><?php
  96. }
  97. }?>
  98. <!-- Properties Theme -->
  99. <?php print theme('tripal_analysis_properties',$node); ?>
  100. <!-- Let modules add more content -->
  101. <?php print $content ?>
  102. </div>
  103. <!-- Table of contents -->
  104. <div id="tripal_analysis_toc" class="tripal_toc">
  105. <div id="tripal_analysis_toc_title" class="tripal_toc_title">Resources</i></div>
  106. <span id="tripal_analysis_toc_desc" class="tripal_toc_desc"></span>
  107. <ul id="tripal_analysis_toc_list" class="tripal_toc_list">
  108. <!-- Resource Links CCK elements --><?php
  109. for($i = 0; $i < count($node->field_resource_links); $i++){
  110. if($node->field_resource_links[$i]['value']){
  111. $matches = preg_split("/\|/",$node->field_resource_links[$i]['value']);?>
  112. <li><a href="<?php print $matches[1] ?>" target="_blank"><?php print $matches[0] ?></a></li><?php
  113. }
  114. }?>
  115. <?php // ADD CUSTOMIZED <li> LINKS HERE ?>
  116. </ul>
  117. </div>
  118. <?php } ?>