feature; ?>
'Name', 'header' => TRUE, 'width' => '20%', ), $feature->name ); // Unique Name row $rows[] = array( array( 'data' => 'Unique Name', 'header' => TRUE ), $feature->uniquename ); // Type row $rows[] = array( array( 'data' => 'Type', 'header' => TRUE ), $feature->type_id->name ); // Organism row $organism = $feature->organism_id->genus ." " . $feature->organism_id->species ." (" . $feature->organism_id->common_name .")"; if (property_exists($feature->organism_id, 'nid')) { $organism = l("" . $feature->organism_id->genus . " " . $feature->organism_id->species . " (" . $feature->organism_id->common_name .")", "node/".$feature->organism_id->nid, array('html' => TRUE)); } $rows[] = array( array( 'data' => 'Organism', 'header' => TRUE, ), $organism ); // Seqlen row if($feature->seqlen > 0) { $rows[] = array( array( 'data' => 'Sequence length', 'header' => TRUE, ), $feature->seqlen ); } // allow site admins to see the feature ID if (user_access('view ids')) { // Feature ID $rows[] = array( array( 'data' => 'Feature ID', 'header' => TRUE, 'class' => 'tripal-site-admin-only-table-row', ), array( 'data' => $feature->feature_id, 'class' => 'tripal-site-admin-only-table-row', ), ); } // Is Obsolete Row if($feature->is_obsolete == TRUE){ $rows[] = array( array( 'data' => '
This feature is obsolete
', 'colspan' => 2 ), ); } // 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_feature-table-base', '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);