IframeField.php in Iframe 8.2
File
src/Plugin/migrate/cckfield/IframeField.php
View source
<?php
namespace Drupal\iframe\Plugin\migrate\cckfield;
use Drupal\migrate\Plugin\MigrationInterface;
use Drupal\migrate_drupal\Plugin\migrate\field\FieldPluginBase;
class IframeField extends FieldPluginBase {
public function getFieldFormatterMap() {
return [
'iframe_formatter_default' => 'iframe_default',
'iframe_formatter_iframeonly' => 'iframe_only',
'iframe_formatter_asurl' => 'iframe_asurl',
'iframe_formatter_asurl_withuri' => 'iframe_asurlwithuri',
];
}
public function processCckFieldValues(MigrationInterface $migration, $field_name, $data) {
$process = [
'plugin' => 'd6_cck_iframe',
'source' => $field_name,
];
$migration
->mergeProcessOfProperty($field_name, $process);
}
}