comparison core/modules/config_translation/src/Event/ConfigTranslationEvents.php @ 17:129ea1e6d783

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:21:36 +0000
parents
children
comparison
equal deleted inserted replaced
16:c2387f117808 17:129ea1e6d783
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 }