wxt-8.x-3.011/modules/custom/wxt_ext/wxt_ext_migration/src/Plugin/migrate/process/DestPath.php
modules/custom/wxt_ext/wxt_ext_migration/src/Plugin/migrate/process/DestPath.php
<?php
namespace Drupal\wxt_ext_migration\Plugin\migrate\process;
use Drupal\migrate\MigrateExecutableInterface;
use Drupal\migrate\MigrateSkipProcessException;
use Drupal\migrate\ProcessPluginBase;
use Drupal\migrate\Row;
/**
* Construct the full destination directory path.
*
* @MigrateProcessPlugin(
* id = "wxt_dest_path",
* )
*/
class DestPath extends ProcessPluginBase {
/**
* {@inheritdoc}
*/
public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
if (!$value) {
throw new MigrateSkipProcessException();
}
return $this->getDestPath($value);
}
/**
* Custom function for getDestPath().
*/
protected function getDestPath($value) {
return str_replace('public://', 'public://legacy/', $value);
}
}
