function lingotek_test_lingotek_config_entity_translation_presave in Lingotek Translation 3.4.x
Same name and namespace in other branches
- 8 tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_entity_translation_presave()
- 8.2 tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_entity_translation_presave()
- 4.0.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_entity_translation_presave()
- 3.0.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_entity_translation_presave()
- 3.1.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_entity_translation_presave()
- 3.2.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_entity_translation_presave()
- 3.3.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_entity_translation_presave()
- 3.5.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_entity_translation_presave()
- 3.6.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_entity_translation_presave()
- 3.7.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_entity_translation_presave()
- 3.8.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_entity_translation_presave()
Implements hook_lingotek_content_entity_translation_presave().
File
- tests/
modules/ lingotek_test/ lingotek_test.module, line 62 - Provides a fake Lingotek API endpoint and other help for testing purposes.
Code
function lingotek_test_lingotek_config_entity_translation_presave(ConfigEntityInterface &$translation, $langcode, &$data) {
switch ($translation
->getEntityTypeId()) {
case 'block':
// Lowercase all [tokens] and remove the asterisks prefix.
$yaml = Yaml::encode($data);
$yaml = preg_replace_callback('/\\[\\*\\*\\*([^]]+)\\*\\*\\*\\]/', function ($matches) {
return '[' . strtolower($matches[1]) . ']';
}, $yaml);
$data = Yaml::decode($yaml);
break;
}
}