Version 1
[yaffs-website] / web / core / modules / migrate / src / Plugin / migrate / process / DedupeBase.php
1 <?php
2
3 namespace Drupal\migrate\Plugin\migrate\process;
4
5 @trigger_error('The ' . __NAMESPACE__ . ' \DedupeEntityBase is deprecated in
6 Drupal 8.4.x and will be removed before Drupal 9.0.0. Instead, use ' . __NAMESPACE__ . ' \MakeUniqueEntityFieldBase', E_USER_DEPRECATED);
7
8 /**
9  * This abstract base contains the dedupe logic.
10  *
11  * These plugins avoid duplication at the destination. For example, when
12  * creating filter format names, the current value is checked against the
13  * existing filter format names and if it exists, a numeric postfix is added
14  * and incremented until a unique value is created.
15  *
16  * @link https://www.drupal.org/node/2345929 Online handbook documentation for dedupebase process plugin @endlink
17  *
18  * @deprecated in Drupal 8.4.x and will be removed in Drupal 9.0.x. Use
19  *   \Drupal\migrate\Plugin\migrate\process\MakeUniqueBase instead.
20  */
21 abstract class DedupeBase extends MakeUniqueBase {
22 }