tripal_organism_libraries.tpl.php 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. <?php
  2. $organism = $variables['node']->organism;
  3. // expand the organism object to include the libraries from the library
  4. // table in chado.
  5. $organism = tripal_core_expand_chado_vars($organism,'table','library');
  6. // get the references. if only one reference exists then we want to convert
  7. // the object into an array, otherwise the value is an array
  8. $libraries = $organism->library;
  9. if (!$libraries) {
  10. $libraries = array();
  11. } elseif (!is_array($libraries)) {
  12. $libraries = array($libraries);
  13. }
  14. ?>
  15. <div id="tripal_organism-library_list-box" class="tripal_organism-info-box tripal-info-box">
  16. <div class="tripal_organism-info-box-title tripal-info-box-title">Libraries</div>
  17. <div class="tripal_organism-info-box-desc tripal-info-box-desc">The following libraries are associated with this organism.</div>
  18. <?php if(count($libraries) > 0){ ?>
  19. <table id="tripal_organism-table-library_list" class="tripal_organism-table tripal-table tripal-table-horz">
  20. <tr class="tripal_organism-table-odd-row tripal-table-even-row">
  21. <th>Library Name</th>
  22. <th>Description</th>
  23. <th>Type</th>
  24. </tr>
  25. <?php
  26. foreach ($libraries as $library){
  27. // expand the library to include the properties.
  28. $library = tripal_core_expand_chado_vars($library,'table','libraryprop');
  29. $library = tripal_core_expand_chado_vars($library,'field','libraryprop.value');
  30. $class = 'tripal_organism-table-odd-row tripal-table-odd-row';
  31. if($i % 2 == 0 ){
  32. $class = 'tripal_organism-table-odd-row tripal-table-even-row';
  33. }
  34. ?>
  35. <tr class="<?php print $class ?>">
  36. <td><?php
  37. if($library->nid){
  38. $link = url("node/$library->nid");
  39. print "<a href=\"$link\">$library->name</a>";
  40. } else {
  41. print $library->name;
  42. }
  43. ?>
  44. </td>
  45. <td><?php
  46. // right now we only have one property for libraries. So we can just
  47. // refernece it directly. If we had more than one property
  48. // we would need to convert this to an if statment and loop
  49. // until we found the right one.
  50. print $library->libraryprop->value?>
  51. </td>
  52. <td>
  53. <?php
  54. if ($library->type_id->name == 'cdna_library') {
  55. print 'cDNA';
  56. } else if ($library->type_id->name == 'bac_library') {
  57. print 'BAC';
  58. } else {
  59. print $library->type_id->name;
  60. }
  61. ?>
  62. </td>
  63. </tr>
  64. <?php
  65. $i++;
  66. } ?>
  67. </table>
  68. <?php } else {?>
  69. <div class="tripal-no-results">There are no libraries available</div>
  70. <?php }?>
  71. <?php print $pager ?>
  72. </div>