CckFieldPluginBase.php in Drupal 8
File
core/modules/migrate_drupal/src/Plugin/migrate/cckfield/CckFieldPluginBase.php
View source
<?php
namespace Drupal\migrate_drupal\Plugin\migrate\cckfield;
@trigger_error('CckFieldPluginBase is deprecated in Drupal 8.3.x and will be be removed before Drupal 9.0.x. Use \\Drupal\\migrate_drupal\\Plugin\\migrate\\field\\FieldPluginBase instead.', E_USER_DEPRECATED);
use Drupal\migrate\Plugin\MigrationInterface;
use Drupal\migrate_drupal\Plugin\migrate\field\FieldPluginBase;
use Drupal\migrate_drupal\Plugin\MigrateCckFieldInterface;
abstract class CckFieldPluginBase extends FieldPluginBase implements MigrateCckFieldInterface {
public function defineValueProcessPipeline(MigrationInterface $migration, $field_name, $data) {
return $this
->processCckFieldValues($migration, $field_name, $data);
}
public abstract function processCckFieldValues(MigrationInterface $migration, $field_name, $data);
}