node--chado-generic.tpl.php 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. <?php
  2. if ($teaser) {
  3. print render($content);
  4. } else {
  5. $node_type = $node->type; ?>
  6. <script type="text/javascript">
  7. // We do not use Drupal Behaviors because we do not want this
  8. // code to be executed on AJAX callbacks. This code only needs to
  9. // be executed once the page is ready.
  10. jQuery(document).ready(function ($) {
  11. // Hide all but the first data pane
  12. $('.tripal-data-pane').hide().filter(':first-child').show()
  13. // When a title in the table of contents is clicked, then
  14. // show the corresponding item in the details box
  15. $('.tripal_toc_list_item_link').click(function () {
  16. var id = $(this).attr('id') + '-tripal-data-pane'
  17. $('.tripal-data-pane').hide().filter('#' + id).fadeIn('fast')
  18. $('.tripal_toc_list_item_link').removeClass('active')
  19. $(this).addClass('active')
  20. return false
  21. })
  22. // If a ?pane= is specified in the URL then we want to show the
  23. // requested content pane. For previous version of Tripal,
  24. // ?block=, was used. We support it here for backwards
  25. // compatibility
  26. var pane
  27. pane = window.location.href.match(/[\?|\&]pane=(.+?)[\&|\#]/)
  28. if (pane == null) {
  29. pane = window.location.href.match(/[\?|\&]pane=(.+)/)
  30. }
  31. // if we don't have a pane then try the old style ?block=
  32. if (pane == null) {
  33. pane = window.location.href.match(/[\?|\&]block=(.+?)[\&|\#]/)
  34. if (pane == null) {
  35. pane = window.location.href.match(/[\?|\&]block=(.+)/)
  36. }
  37. }
  38. if (pane != null) {
  39. $('.tripal-data-pane').hide().filter('#' + pane[1] + '-tripal-data-pane').show()
  40. $('.tripal_toc_list_item_link[href="'+pane[0]+'"]').addClass('active')
  41. }
  42. if(pane === null) {
  43. $('.tripal_toc_list_item_link').first().addClass('active')
  44. }
  45. // Remove the 'active' class from the links section, as it doesn't
  46. // make sense for this layout
  47. //$('a.active').removeClass('active')
  48. })
  49. </script>
  50. <div class="row">
  51. <div class="col-sm-2">
  52. <?php
  53. // print the table of contents. It's found in the content array
  54. if (array_key_exists('tripal_toc', $content)) {
  55. print $content['tripal_toc']['#markup'];
  56. // we may want to add the links portion of the contents to the sidebar
  57. //print render($content['links']);
  58. // remove the table of contents and links so thye doent show up in the
  59. // data section when the rest of the $content array is rendered
  60. unset($content['tripal_toc']);
  61. unset($content['links']);
  62. }
  63. ?>
  64. </div>
  65. <div class="col-sm-10">
  66. <?php
  67. // print the rendered content
  68. foreach ($content as $key => $value) {
  69. if (isset($content[$key]['#markup'])) {
  70. $content[$key]['#markup'] = rtrim(trim($content[$key]['#markup']), '</div>');
  71. }
  72. }
  73. print render($content);
  74. ?>
  75. </div>
  76. </div>
  77. <?php
  78. }