featuremap; // expand the description field $featuremap = chado_expand_var($featuremap, 'field', 'featuremap.description'); ?>
'Map Name', 'header' => TRUE, 'width' => '20%', ], $featuremap->name, ]; // Map Units $rows[] = [ [ 'data' => 'Map Units', 'header' => TRUE, ], $featuremap->unittype_id->name, ]; // allow site admins to see the feature ID if (user_access('view ids')) { // Feature Map ID $rows[] = [ [ 'data' => 'Feature Map ID', 'header' => TRUE, 'class' => 'tripal-site-admin-only-table-row', ], [ 'data' => $featuremap->featuremap_id, 'class' => 'tripal-site-admin-only-table-row', ], ]; } // 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 = [ 'header' => $headers, 'rows' => $rows, 'attributes' => [ 'id' => 'tripal_featuremap-table-base', 'class' => 'tripal-data-table', ], 'sticky' => FALSE, 'caption' => '', 'colgroups' => [], 'empty' => '', ]; // once we have our table array structure defined, we call Drupal's theme_table() // function to generate the table. print theme_table($table); if (property_exists($featuremap, 'description')) { ?>
description; ?>