SU-SWS/react_paragraphs

View on GitHub
src/Plugin/Field/FieldFormatter/ReactParagraphs.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace Drupal\react_paragraphs\Plugin\Field\FieldFormatter;

use Drupal\entity_reference_revisions\Plugin\Field\FieldFormatter\EntityReferenceRevisionsEntityFormatter;

/**
 * Plugin implementation of the 'react_paragraphs' formatter.
 *
 * This plugin is deprecated and is only used for upgrade process. It will be
 * Marked as deprecated and removed in a later release.
 *
 * @FieldFormatter(
 *   id = "react_paragraphs",
 *   label = @Translation("DEPRECATED: React Paragraphs"),
 *   field_types = {
 *     "react_paragraphs",
 *     "entity_reference_revisions"
 *   }
 * )
 */
class ReactParagraphs extends EntityReferenceRevisionsEntityFormatter {

}