You are here

BundlePluginTest.php in Entity API 8

File

tests/modules/entity_module_bundle_plugin_test/src/Annotation/BundlePluginTest.php
View source
<?php

namespace Drupal\entity_module_bundle_plugin_test\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines the BundlePluginTest annotation object.
 *
 * Plugin namespace: Plugin\BundlePluginTest.
 *
 * @see plugin_api
 *
 * @Annotation
 */
class BundlePluginTest extends Plugin {

  /**
   * The plugin ID.
   *
   * @var string
   */
  public $id;

  /**
   * The plugin label.
   *
   * @ingroup plugin_translatable
   *
   * @var \Drupal\Core\Annotation\Translation
   */
  public $label;

}

Classes

Namesort descending Description
BundlePluginTest Defines the BundlePluginTest annotation object.