c64738f56342727c30383e7dfa18ea9c2f5db875
[yaffs-website] / web / core / modules / migrate_drupal / src / Plugin / MigrateCckFieldInterface.php
1 <?php
2
3 namespace Drupal\migrate_drupal\Plugin;
4
5 @trigger_error('MigrateCckFieldInterface is deprecated in Drupal 8.3.x and will
6 be removed before Drupal 9.0.x. Use \Drupal\migrate_drupal\Annotation\MigrateField
7 instead.', E_USER_DEPRECATED);
8
9 use Drupal\migrate\Plugin\MigrationInterface;
10
11 /**
12  * Provides an interface for all CCK field type plugins.
13  *
14  * @deprecated in Drupal 8.3.x, to be removed before Drupal 9.0.x. Use
15  *   \Drupal\migrate_drupal\Annotation\MigrateField instead.
16  */
17 interface MigrateCckFieldInterface extends MigrateFieldInterface {
18
19   /**
20    * Apply any custom processing to the cck bundle migrations.
21    *
22    * @param \Drupal\migrate\Plugin\MigrationInterface $migration
23    *   The migration entity.
24    * @param string $field_name
25    *   The field name we're processing the value for.
26    * @param array $data
27    *   The array of field data from CckFieldValues::fieldData().
28    */
29   public function processCckFieldValues(MigrationInterface $migration, $field_name, $data);
30
31 }