You are here

LinkClassFormatter.php in Element Class Formatter 8

File

src/Plugin/Field/FieldFormatter/LinkClassFormatter.php
View source
<?php

namespace Drupal\element_class_formatter\Plugin\Field\FieldFormatter;

use Drupal\link\Plugin\Field\FieldFormatter\LinkFormatter;

/**
 * Plugin implementation of the 'link with class' formatter.
 *
 * @FieldFormatter(
 *   id = "link_class",
 *   label = @Translation("Link (with class)"),
 *   field_types = {
 *     "link"
 *   }
 * )
 */
class LinkClassFormatter extends LinkFormatter {
  use ElementLinkClassTrait;

}

Classes

Namesort descending Description
LinkClassFormatter Plugin implementation of the 'link with class' formatter.