123456789101112131415161718192021222324252627 |
- <?php
- class data__sequence_coordinates_formatter extends TripalFieldFormatter {
- // The default lable for this field.
- public static $label = 'Sequence Coordinates';
- // The list of field types for which this formatter is appropriate.
- public static $field_types = array('data__sequence_coordinates');
- // The list of default settings for this formatter.
- public static $settings = array();
- /**
- *
- * @see TripalFieldFormatter::settingsForm()
- */
- public function settingsForm($view_mode, $form, &$form_state) {
- }
- /**
- *
- * @see TripalFieldFormatter::view()
- */
- public function view(&$element, $entity_type, $entity, $langcode, $items, $display) {
- }
- }
|