function locale_system_file_system_settings_submit
Same name in other branches
- 8.9.x core/modules/locale/locale.module \locale_system_file_system_settings_submit()
- 10 core/modules/locale/locale.module \locale_system_file_system_settings_submit()
- 11.x core/modules/locale/locale.module \locale_system_file_system_settings_submit()
Submit handler for the file system settings form.
Clears the translation status when the Interface translations directory changes. Without a translations directory local po files in the directory should be ignored. The old translation status is no longer valid.
1 string reference to 'locale_system_file_system_settings_submit'
- locale_form_system_file_system_settings_alter in core/
modules/ locale/ locale.module - Implements hook_form_FORM_ID_alter() for system_file_system_settings().
File
-
core/
modules/ locale/ locale.module, line 735
Code
function locale_system_file_system_settings_submit(&$form, FormStateInterface $form_state) {
if ($form['translation_path']['#default_value'] != $form_state->getValue('translation_path')) {
locale_translation_clear_status();
}
\Drupal::configFactory()->getEditable('locale.settings')
->set('translation.path', $form_state->getValue('translation_path'))
->save();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.