You are here

function lingotek_test_lingotek_config_object_translation_presave in Lingotek Translation 8.2

Same name and namespace in other branches
  1. 4.0.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_object_translation_presave()
  2. 3.0.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_object_translation_presave()
  3. 3.1.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_object_translation_presave()
  4. 3.2.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_object_translation_presave()
  5. 3.3.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_object_translation_presave()
  6. 3.4.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_object_translation_presave()
  7. 3.5.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_object_translation_presave()
  8. 3.6.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_object_translation_presave()
  9. 3.7.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_object_translation_presave()
  10. 3.8.x tests/modules/lingotek_test/lingotek_test.module \lingotek_test_lingotek_config_object_translation_presave()

Implements hook_lingotek_content_object_translation_presave().

File

tests/modules/lingotek_test/lingotek_test.module, line 110
Provides a fake Lingotek API endpoint and other help for testing purposes.

Code

function lingotek_test_lingotek_config_object_translation_presave(array &$data, $config_name) {
  if ($config_name === 'system.rss') {

    // Replace Gatos with Perros.
    $data['system.rss']['channel.description'] = str_replace('Gatos', 'Perros', $data['system.rss']['channel.description']);
  }
}