D7Comment.php in Drupal 9
File
core/modules/comment/src/Plugin/migrate/D7Comment.php
View source
<?php
namespace Drupal\comment\Plugin\migrate;
use Drupal\migrate_drupal\Plugin\migrate\FieldMigration;
class D7Comment extends FieldMigration {
public function getProcess() {
if (!$this->init) {
$this->init = TRUE;
$this->fieldDiscovery
->addEntityFieldProcesses($this, 'comment');
}
return parent::getProcess();
}
}
Classes
Name |
Description |
D7Comment |
Migration plugin for Drupal 7 comments with fields. |