contact; ?>
'Name', 'header' => TRUE, 'width' => '20%', ], $contact->name, ]; // Contact Type row $rows[] = [ [ 'data' => 'Type', 'header' => TRUE, ], $contact->type_id->name, ]; // allow site admins to see the contact ID if (user_access('view ids')) { // Pub ID $rows[] = [ [ 'data' => 'Contact ID', 'header' => TRUE, 'class' => 'tripal-site-admin-only-table-row', ], [ 'data' => $contact->contact_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_contact-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($contact, 'description')) { ?>
description; ?>