tripal_feature_properties.tpl.php 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. $properties = $variables['tripal_feature']['properties'];
  3. $feature = $variables['node']->feature;
  4. ?>
  5. <div id="tripal_feature-properties-box" class="tripal_feature-info-box tripal-info-box">
  6. <div class="tripal_feature-info-box-title tripal-info-box-title">Properties</div>
  7. <div class="tripal_feature-info-box-desc tripal-info-box-desc">The feature '<?php print $feature->featurename ?>' has these properties</div>
  8. <?php if(count($properties) > 0){ ?>
  9. <table id="tripal_feature-properties-table" class="tripal_feature-table tripal-table tripal-table-horz">
  10. <tr>
  11. <th>Synonym</th>
  12. </tr>
  13. <?php
  14. $i = 0;
  15. foreach ($properties as $result){
  16. $class = 'tripal_feature-table-odd-row tripal-table-odd-row';
  17. if($i % 2 == 0 ){
  18. $class = 'tripal_feature-table-odd-row tripal-table-even-row';
  19. }
  20. ?>
  21. <tr class="<?php print $class ?>">
  22. <td><?php print $result->name?></td>
  23. </tr>
  24. <?php
  25. $i++;
  26. } ?>
  27. </table>
  28. <?php } else { ?>
  29. <div class="tripal-no-results">There are no properties for this feature</div>
  30. <?php }?>
  31. </div>