6a95f69ba297fdcfa7b28037c0cdb608eed22283
[yaffs-website] / web / core / modules / config_translation / src / Event / ConfigTranslationEvents.php
1 <?php
2
3 namespace Drupal\config_translation\Event;
4
5 /**
6  * Provides a list of events dispatched by the Configuration Translation module.
7  */
8 final class ConfigTranslationEvents {
9
10   /**
11    * The name of the event dispatched when a configuration mapper is populated.
12    *
13    * Allows modules to add related config for translation on a specific
14    * translation form.
15    *
16    * @see \Drupal\config_translation\ConfigMapperInterface::populateFromRouteMatch()
17    */
18   const POPULATE_MAPPER = 'config_translation.populate_mapper';
19
20 }