tripal_stock_references.tpl.php 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. // Copyright 2010 University of Saskatchewan (Lacey-Anne Sanderson)
  3. //
  4. // Purpose: Provides the layout and content for stock external database
  5. // references (this doesn't include the main database reference from the
  6. // stock table). This includes all fields from the dbxref and db chado tables
  7. // where each dbxref is associated with the current stock through the
  8. // stock_dbxref table
  9. //
  10. // Note: This template controls the layout/content for the default stock node
  11. // template (node-chado_stock.tpl.php) and the Stock Database References Block
  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. // - $node->db_references: an array of stock database reference objects
  20. // where each object has the following fields: dbxref_id, accession,
  21. // version, description, db_id, db_name, db_description, db_url,
  22. // db_urlprefix
  23. // NOTE: For a full listing of fields available in the node object the
  24. // print_r $node line below or install the Drupal Devel module which
  25. // provides an extra tab at the top of the node page labelled Devel
  26. ?>
  27. <?php
  28. $node = tripal_core_expand_chado_vars($node, 'table', 'stock_dbxref');
  29. $db_references = $node->stock->stock_dbxref;
  30. if (!$db_references) {
  31. $db_references = array();
  32. } elseif (!is_array($db_references)) {
  33. $db_references = array($db_references);
  34. }
  35. ?>
  36. <?php
  37. //uncomment this line to see a full listing of the fields avail. to $node
  38. //print '<pre>'.print_r($node,TRUE).'</pre>';
  39. ?>
  40. <div id="tripal_stock-references-box" class="tripal_stock-info-box tripal-info-box">
  41. <div class="tripal_stock-info-box-title tripal-info-box-title">References</div>
  42. <div class="tripal_stock-info-box-desc tripal-info-box-desc">The stock '<?php print $node->stock->name ?>' is also available at these locations</div>
  43. <?php if(count($db_references) > 0){ ?>
  44. <table class="tripal_stock-table tripal-table tripal-table-horz">
  45. <tr>
  46. <th>Dababase</th>
  47. <th>Accession</th>
  48. </tr>
  49. <?php
  50. $i = 0;
  51. foreach ($db_references as $result){
  52. $dbxref = $result->dbxref_id;
  53. $class = 'tripal_stock-table-odd-row tripal-table-odd-row';
  54. if($i % 2 == 0 ){
  55. $class = 'tripal_stock-table-odd-row tripal-table-even-row';
  56. }
  57. ?>
  58. <tr class="<?php print $class ?>">
  59. <td><?php print $dbxref->db_id->name?></td>
  60. <td><?php
  61. if($dbxref->db_id->urlprefix){
  62. print l($dbxref->accession, $dbxref->db_id->urlprefix.$dbxref->accession);
  63. } else {
  64. print $dbxref->accession;
  65. }
  66. ?>
  67. </td>
  68. </tr>
  69. <?php
  70. $i++;
  71. } ?>
  72. </table>
  73. <?php } else {
  74. print '<div class="tripal-no-results">There are no external database references for the current stock.</div>';
  75. }?>
  76. </div>