082c05135eae052a82b7321c51895c9d74757193
[yaffs-website] / web / core / modules / migrate_drupal / src / Plugin / migrate / CckMigration.php
1 <?php
2
3 namespace Drupal\migrate_drupal\Plugin\migrate;
4
5 @trigger_error('CckMigration is deprecated in Drupal 8.3.x and will be removed
6 before Drupal 9.0.x. Use \Drupal\migrate_drupal\Plugin\migrate\FieldMigration
7 instead.', E_USER_DEPRECATED);
8
9 /**
10  * Migration plugin class for migrations dealing with CCK field values.
11  *
12  * @deprecated in Drupal 8.3.x, to be removed before Drupal 9.0.x. Use
13  * \Drupal\migrate_drupal\Plugin\migrate\FieldMigration instead.
14  */
15 class CckMigration extends FieldMigration {
16
17   /**
18    * {@inheritdoc}
19    */
20   const PLUGIN_METHOD = 'cck_plugin_method';
21
22 }