12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?php
- $stock = $variables['node']->stock;
- $options = array('return_array' => 1);
- $stock = chado_expand_var($stock, 'table', 'stockprop', $options);
- $stockprops = $stock->stockprop;
- $properties = array();
- if ($stockprops) {
- foreach ($stockprops as $property) {
-
-
- if($property->type_id->name != 'synonym' and $property->type_id->name != 'alias') {
- $property = chado_expand_var($property,'field','stockprop.value');
- $properties[] = $property;
- }
- }
- }
- if(count($properties) > 0){
-
-
-
- $headers = array('Property Name', 'Value');
-
-
-
-
-
- $rows = array();
-
- foreach ($properties as $property){
- $property = chado_expand_var($property,'field','stockprop.value');
- $rows[] = array(
- array('data' => ucfirst(preg_replace('/_/', ' ', $property->type_id->name)), 'width' => '20%'),
- urldecode($property->value)
- );
- }
-
-
-
-
-
- $table = array(
- 'header' => $headers,
- 'rows' => $rows,
- 'attributes' => array(
- 'id' => 'tripal_stock-table-properties',
- 'class' => 'tripal-data-table'
- ),
- 'sticky' => FALSE,
- 'caption' => '',
- 'colgroups' => array(),
- 'empty' => '',
- );
-
-
-
- print theme_table($table);
- }
|