You are here

SyncNormalizerDecorator.php in Content Synchronization 3.0.x

Same filename and directory in other branches
  1. 8.2 src/Annotation/SyncNormalizerDecorator.php

File

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

namespace Drupal\content_sync\Annotation;

use Drupal\Component\Annotation\Plugin;

/**
 * Defines a Sync normalizer decorator item annotation object.
 *
 * @see \Drupal\content_sync\Plugin\SyncNormalizerDecoratorManager
 * @see plugin_api
 *
 * @Annotation
 */
class SyncNormalizerDecorator extends Plugin {

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

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

}

Classes

Namesort descending Description
SyncNormalizerDecorator Defines a Sync normalizer decorator item annotation object.