12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- <?php
- $organism = $variables['node']->organism;
- $options = array('return_array' => 1);
- $organism = chado_expand_var($organism, 'table', 'organismprop', $options);
- $properties = $organism->organismprop;
- if(count($properties) > 0){
-
- // the $headers array is an array of fields to use as the colum headers.
- // additional documentation can be found here
- // https://api.drupal.org/api/drupal/includes%21theme.inc/function/theme_table/7
- $headers = array('Property Name', 'Value');
-
- // the $rows array contains an array of rows where each row is an array
- // of values for each column of the table in that row. Additional documentation
- // can be found here:
- // https://api.drupal.org/api/drupal/includes%21theme.inc/function/theme_table/7
- $rows = array();
-
- foreach ($properties as $property){
- $property = chado_expand_var($property,'field','organismprop.value');
- $rows[] = array(
- ucfirst(preg_replace('/_/', ' ', $property->type_id->name)),
- urldecode($property->value)
- );
- }
-
- // the $table array contains the headers and rows array as well as other
- // options for controlling the display of the table. Additional
- // documentation can be found here:
- // https://api.drupal.org/api/drupal/includes%21theme.inc/function/theme_table/7
- $table = array(
- 'header' => $headers,
- 'rows' => $rows,
- 'attributes' => array(
- 'id' => 'tripal_organism-table-properties',
- 'class' => 'tripal-data-table'
- ),
- 'sticky' => FALSE,
- 'caption' => '',
- 'colgroups' => array(),
- 'empty' => '',
- );
-
- // once we have our table array structure defined, we call Drupal's theme_table()
- // function to generate the table.
- print theme_table($table);
- }
|