| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 | <?phpclass local__contact_formatter extends ChadoFieldFormatter {  // The default label for this field.  public static $default_label = 'Contact';  // The list of field types for which this formatter is appropriate.  public static $field_types = ['local_contact'];  /**   *   * @see TripalFieldFormatter::settingsForm()   */  public function settingsForm($view_mode, $form, &$form_state) {  }  /**   *   * @see TripalFieldFormatter::view()   */  public function view(&$element, $entity_type, $entity, $langcode, $items, $display) {    // Get the settings    $settings = $display['settings'];    $type_term = chado_get_semweb_term('contact', 'type_id');    $name_term = chado_get_semweb_term('contact', 'name');    $description_term = chado_get_semweb_term('contact', 'description');    $headers = ['Name', 'Description', 'Type'];    $rows = [];    foreach ($items as $delta => $item) {      $contact = $item['value'];      if (!$contact) {        continue;      }      // Get the field values      $contact_name = $contact[$name_term];      $description = $contact[$description_term];      $type = $contact[$type_term];      // Add a link i there is an entity.      if (array_key_exists('entity', $item['value']) and $item['value']['entity']) {        list($entity_type, $entity_id) = explode(':', $item['value']['entity']);        $contact_name = l($contact_name, "bio_data/" . $entity_id, ['attributes' => ['target' => "_blank"]]);      }      $rows[] = [$contact_name, $description, $type];    }    $table = [      'header' => $headers,      'rows' => $rows,      'attributes' => [        'id' => 'tripal_linker-table-contact-object',        'class' => 'tripal-data-table',      ],      'sticky' => FALSE,      'caption' => "",      'colgroups' => [],      'empty' => 'There are no contacts available.',    ];    $content = theme_table($table);    if (count($items) > 0) {      // once we have our table array structure defined, we call Drupal's theme_table()      // function to generate the table.      $element[0] = [        '#type' => 'markup',        '#markup' => $content,      ];    }  }}
 |