so__cds_formatter.inc 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. class so__cds_formatter extends ChadoFieldFormatter {
  3. // The default lable for this field.
  4. public static $default_label = 'Coding Sequence';
  5. // The list of field types for which this formatter is appropriate.
  6. public static $field_types = array('so__cds');
  7. /**
  8. * @see TripalFieldFormatter::view()
  9. */
  10. public function view(&$element, $entity_type, $entity, $langcode, $items, $display) {
  11. $element[0] = array(
  12. // We create a render array to produce the desired markup,
  13. '#type' => 'markup',
  14. '#markup' => '',
  15. );
  16. $num_bases = 50;
  17. foreach ($items as $delta => $item) {
  18. // If there are no residues then skip this one.
  19. if (!is_array($item['value']) or !array_key_exists('residues', $item['value'])) {
  20. continue;
  21. }
  22. $residues = $item['value']['residues'];
  23. $content .= '<pre class="residues-formatter">';
  24. $content .= '>' . $defline . "<br>";
  25. $content .= wordwrap($residues, $num_bases, "<br>", TRUE);
  26. $content .= '</pre>';
  27. $element[$delta] = array(
  28. // We create a render array to produce the desired markup,
  29. '#type' => 'markup',
  30. '#markup' => $content,
  31. );
  32. }
  33. }
  34. }