public function ContentTranslationEnabledSetting::transform in Drupal 9
Same name and namespace in other branches
- 8 core/modules/language/src/Plugin/migrate/process/ContentTranslationEnabledSetting.php \Drupal\language\Plugin\migrate\process\ContentTranslationEnabledSetting::transform()
Performs the associated process.
Parameters
mixed $value: The value to be transformed.
\Drupal\migrate\MigrateExecutableInterface $migrate_executable: The migration in which this process is being executed.
\Drupal\migrate\Row $row: The row from the source to process. Normally, just transforming the value is adequate but very rarely you might need to change two columns at the same time or something like that.
string $destination_property: The destination property currently worked on. This is only used together with the $row above.
Return value
string|array The newly transformed value.
Overrides ProcessPluginBase::transform
File
- core/
modules/ language/ src/ Plugin/ migrate/ process/ ContentTranslationEnabledSetting.php, line 27
Class
- ContentTranslationEnabledSetting
- Determines the content translation setting.
Namespace
Drupal\language\Plugin\migrate\processCode
public function transform($value, MigrateExecutableInterface $migrate_executable, Row $row, $destination_property) {
if (!is_array($value)) {
throw new MigrateException('Input should be an array');
}
list($language_content_type, $entity_translation_entity_types, $entity_type) = $value;
switch ($language_content_type) {
// In the case of being 0, it will be skipped. We are not actually setting
// a null value.
case 0:
$setting = NULL;
break;
case 1:
$setting = FALSE;
break;
case 2:
$setting = FALSE;
break;
case 4:
// If entity translation is enabled return the status of comment
// translations.
$setting = FALSE;
if (!empty($entity_translation_entity_types[$entity_type])) {
$setting = TRUE;
}
break;
default:
$setting = NULL;
break;
}
return $setting;
}