protected function FileCopy::isLocationUnchanged in Drupal 10
Same name and namespace in other branches
- 8 core/modules/migrate/src/Plugin/migrate/process/FileCopy.php \Drupal\migrate\Plugin\migrate\process\FileCopy::isLocationUnchanged()
- 9 core/modules/migrate/src/Plugin/migrate/process/FileCopy.php \Drupal\migrate\Plugin\migrate\process\FileCopy::isLocationUnchanged()
Determines if the source and destination URIs represent identical paths.
Parameters
string $source: The source URI.
string $destination: The destination URI.
Return value
bool TRUE if the source and destination URIs refer to the same physical path, otherwise FALSE.
1 call to FileCopy::isLocationUnchanged()
- FileCopy::transform in core/
modules/ migrate/ src/ Plugin/ migrate/ process/ FileCopy.php - Performs the associated process.
File
- core/
modules/ migrate/ src/ Plugin/ migrate/ process/ FileCopy.php, line 231
Class
- FileCopy
- Copies or moves a local file from one place into another.
Namespace
Drupal\migrate\Plugin\migrate\processCode
protected function isLocationUnchanged($source, $destination) {
return $this->fileSystem
->realpath($source) === $this->fileSystem
->realpath($destination);
}