12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?php
- $feature = $variables['node']->feature;
- $options = array('return_array' => 1);
- $feature = chado_expand_var($feature, 'table', 'featureprop', $options);
- $properties = $feature->featureprop;
- if(count($properties) > 0){
-
-
-
-
- $headers = array('Property Name', 'Value');
-
-
-
-
-
- $rows = array();
-
- foreach ($properties as $property){
- $property = chado_expand_var($property,'field','featureprop.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_feature-table-properties',
- 'class' => 'tripal-data-table'
- ),
- 'sticky' => FALSE,
- 'caption' => '',
- 'colgroups' => array(),
- 'empty' => '',
- );
-
-
-
- print theme_table($table);
- }
|