tripal_library_properties.tpl.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <?php
  2. // Purpose: Provide layout and content for library properties. This includes all
  3. // fields in the libraryprop table with the library_id of the current library
  4. // supplemented with extra details for the type to provide human-readable
  5. // output
  6. //
  7. // Note: This template controls the layout/content for the default library node
  8. // template (node-chado_library.tpl.php) and the library Properties Block
  9. //
  10. // Variables Available:
  11. // - $node: a standard object which contains all the fields associated with
  12. // nodes including nid, type, title, taxonomy. It also includes library
  13. // specific fields such as library_name, uniquename, library_type, synonyms,
  14. // properties, db_references, object_relationships, subject_relationships,
  15. // organism, etc.
  16. // - $node->properties: an array of library property objects where each object
  17. // the following fields: libraryprop_id, type_id, type, value, rank
  18. // and includes synonyms
  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. ?>
  23. <?php
  24. //uncomment this line to see a full listing of the fields avail. to $node
  25. //print '<pre>'.print_r($node,TRUE).'</pre>';
  26. ?>
  27. <?php
  28. $library = $node->library;
  29. $library = tripal_core_expand_chado_vars($library,'table','libraryprop');
  30. $properties = $library->libraryprop;
  31. if (!$properties) {
  32. $properties = array();
  33. } elseif (!is_array($properties)) {
  34. $properties = array($properties);
  35. }
  36. ?>
  37. <div id="tripal_library-properties-box" class="tripal_library-info-box tripal-info-box">
  38. <div class="tripal_library-info-box-title tripal-info-box-title">Properties</div>
  39. <div class="tripal_library-info-box-desc tripal-info-box-desc">Properties for the library '<?php print $node->library->name ?>' include:</div>
  40. <?php if(count($properties) > 0){ ?>
  41. <table class="tripal_library-table tripal-table tripal-table-horz">
  42. <tr><th>Type</th><th>Value</th></tr>
  43. <?php // iterate through each property
  44. $i = 0;
  45. foreach ($properties as $result){
  46. $class = 'tripal_library-table-odd-row tripal-table-odd-row';
  47. if($i % 2 == 0 ){
  48. $class = 'tripal_library-table-odd-row tripal-table-even-row';
  49. }
  50. print '<tr class="'.$class.'"><td>'.$result->type_id->name.'</td><td>'.$result->value.'</td></tr>';
  51. $i++;
  52. } ?>
  53. </table>
  54. <?php } else {
  55. print '<div class="tripal-no-results">There are no properties for the current library.</div>';
  56. } ?>
  57. </div>