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