You are here

AreaComponents.php in Dimension 2.0.x

Same filename and directory in other branches
  1. 2.1.x src/Plugin/Field/FieldFormatter/AreaComponents.php

File

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

namespace Drupal\dimension\Plugin\Field\FieldFormatter;

use Drupal\dimension\Plugin\Field\AreaTrait;

/**
 * Plugin implementation of the 'area_components_field_formatter' formatter.
 *
 * @FieldFormatter(
 *   id = "area_components_field_formatter",
 *   label = @Translation("Dimension: Area Components"),
 *   field_types = {
 *     "area_field_type"
 *   }
 * )
 */
class AreaComponents extends Components {
  use AreaTrait;

}

Classes

Namesort descending Description
AreaComponents Plugin implementation of the 'area_components_field_formatter' formatter.