public function PathRedirect::transform in Redirect 8
Same name in this branch
- 8 src/Plugin/migrate/process/PathRedirect.php \Drupal\redirect\Plugin\migrate\process\PathRedirect::transform()
- 8 src/Plugin/migrate/process/d7/PathRedirect.php \Drupal\redirect\Plugin\migrate\process\d7\PathRedirect::transform()
Transform the field as required for an iFrame field.
Overrides ProcessPluginBase::transform
File
- src/
Plugin/ migrate/ process/ PathRedirect.php, line 21
Class
- PathRedirect
- Plugin annotation @MigrateProcessPlugin( id = "d6_path_redirect" )
Namespace
Drupal\redirect\Plugin\migrate\processCode
public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
// Check if the url begins with http.
if (preg_match('#^http#', $value[0])) {
// Use it as is.
$uri = $value[0];
}
else {
// Make the link internal.
$uri = 'internal:/' . $value[0];
}
// Check if there is a query.
if (!empty($value[1])) {
// Add it to the end of the url.
$uri .= '?' . $value[1];
}
return $uri;
}