config_translation_themes_uninstalled()
Implements hook_themes_uninstalled().
File
- core/modules/config_translation/config_translation.module, line 64
- Configuration Translation module.
Code
1 2 3 4 5 6 7 | function config_translation_themes_uninstalled() { // Themes can provide *.config_translation.yml declarations. // @todo Make ThemeHandler trigger an event instead and make // ConfigMapperManager plugin manager subscribe to it. \Drupal::service( 'plugin.manager.config_translation.mapper' )->clearCachedDefinitions(); } |
Please login to continue.