FileProcessBase.php in Drupal 8
File
core/modules/migrate/src/Plugin/migrate/process/FileProcessBase.php
View source
<?php
namespace Drupal\migrate\Plugin\migrate\process;
use Drupal\Core\File\FileSystemInterface;
use Drupal\migrate\ProcessPluginBase;
abstract class FileProcessBase extends ProcessPluginBase {
public function __construct(array $configuration, $plugin_id, array $plugin_definition) {
if (array_key_exists('file_exists', $configuration)) {
switch ($configuration['file_exists']) {
case 'use existing':
$configuration['file_exists'] = FileSystemInterface::EXISTS_ERROR;
break;
case 'rename':
$configuration['file_exists'] = FileSystemInterface::EXISTS_RENAME;
break;
default:
$configuration['file_exists'] = FileSystemInterface::EXISTS_REPLACE;
}
}
if (array_key_exists('reuse', $configuration)) {
@trigger_error("Using the key 'reuse' is deprecated, use 'file_exists' => 'use existing' instead. See https://www.drupal.org/node/2981389.", E_USER_DEPRECATED);
if (!empty($configuration['reuse'])) {
$configuration['file_exists'] = FileSystemInterface::EXISTS_ERROR;
}
}
if (array_key_exists('rename', $configuration)) {
@trigger_error("Using the key 'rename' is deprecated, use 'file_exists' => 'rename' instead. See https://www.drupal.org/node/2981389.", E_USER_DEPRECATED);
if (!empty($configuration['rename'])) {
$configuration['file_exists'] = FileSystemInterface::EXISTS_RENAME;
}
}
$configuration += [
'file_exists' => FileSystemInterface::EXISTS_REPLACE,
];
parent::__construct($configuration, $plugin_id, $plugin_definition);
}
}