chado_linker__featurepos_formatter.inc 676 B

123456789101112131415161718192021222324252627
  1. <?php
  2. class chado_linker__featurepos_formatter extends TripalFieldFormatter {
  3. // The default lable for this field.
  4. public static $label = 'Map positions';
  5. // The list of field types for which this formatter is appropriate.
  6. public static $field_types = array('chado_linker__featurepos');
  7. // The list of default settings for this formatter.
  8. public static $settings = array();
  9. /**
  10. *
  11. * @see TripalFieldFormatter::settingsForm()
  12. */
  13. public function settingsForm($view_mode, $form, &$form_state) {
  14. }
  15. /**
  16. *
  17. * @see TripalFieldFormatter::view()
  18. */
  19. public function view(&$element, $entity_type, $entity, $langcode, $items, $display) {
  20. }
  21. }