You are here

ExtraFieldType.php in Entity Extra Field 8

Same filename and directory in other branches
  1. 2.0.x src/Annotation/ExtraFieldType.php

File

src/Annotation/ExtraFieldType.php
View source
<?php

namespace Drupal\entity_extra_field\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Define extra field type plugin annotation.
 *
 * @Annotation
 */
class ExtraFieldType extends Plugin {

  /**
   * @var string
   */
  public $id;

  /** @var string */
  public $label;

}

Classes

Namesort descending Description
ExtraFieldType Define extra field type plugin annotation.