EntityShortcutSet.php in Drupal 10
File
core/modules/shortcut/src/Plugin/migrate/destination/EntityShortcutSet.php
View source
<?php
namespace Drupal\shortcut\Plugin\migrate\destination;
use Drupal\migrate\Row;
use Drupal\migrate\Plugin\migrate\destination\EntityConfigBase;
class EntityShortcutSet extends EntityConfigBase {
protected function getEntity(Row $row, array $old_destination_id_values) {
$entity = parent::getEntity($row, $old_destination_id_values);
$entity
->setSyncing(TRUE);
return $entity;
}
}