function config_translation_themes_installed in Drupal 8
Same name and namespace in other branches
- 9 core/modules/config_translation/config_translation.module \config_translation_themes_installed()
- 10 core/modules/config_translation/config_translation.module \config_translation_themes_installed()
Implements hook_themes_installed().
File
- core/
modules/ config_translation/ config_translation.module, line 55 - Configuration Translation module.
Code
function config_translation_themes_installed() {
// Themes can provide *.config_translation.yml declarations.
// @todo Make ThemeHandler trigger an event instead and make
// ConfigMapperManager plugin manager subscribe to it.
// @see https://www.drupal.org/node/2206347
\Drupal::service('plugin.manager.config_translation.mapper')
->clearCachedDefinitions();
}