obi__organism_formatter.inc 1.1 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. class obi__organism_formatter extends TripalFieldFormatter {
  3. // The default lable for this field.
  4. public static $label = 'Organism';
  5. // The list of field types for which this formatter is appropriate.
  6. public static $field_types = array('obi__organism');
  7. // The list of default settings for this formatter.
  8. public static $settings = array();
  9. /**
  10. * @see TripalFieldFormatter::view()
  11. */
  12. public function view(&$element, $entity_type, $entity, $langcode, $items, $display) {
  13. if (count($items) > 0) {
  14. $content = $items[0]['value']['rdfs:label'];
  15. if (array_key_exists('entity', $items[0]['value'])) {
  16. list($entity_type, $entity_id) = explode(':', $items[0]['value']['entity']);
  17. $content = l(strip_tags($items[0]['value']['rdfs:label']), 'bio_data/' . $entity_id);
  18. }
  19. // The cardinality of this field is 1 so we don't have to
  20. // iterate through the items array, as there will never be more than 1.
  21. $element[0] = array(
  22. '#type' => 'markup',
  23. '#markup' => $content,
  24. );
  25. }
  26. }
  27. }