Code Coverage |
||||||||||
Classes and Traits |
Functions and Methods |
Lines |
||||||||
Total | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
CRAP | |
100.00% |
0 / 0 |
LocaleEvents | |
100.00% |
1 / 1 |
|
100.00% |
0 / 0 |
0 | |
100.00% |
0 / 0 |
<?php | |
/** | |
* @file | |
* Contains \Drupal\locale\LocaleEvents. | |
*/ | |
namespace Drupal\locale; | |
/** | |
* Defines events for locale translation. | |
* | |
* @see \Drupal\Core\Config\ConfigCrudEvent | |
*/ | |
final class LocaleEvents { | |
/** | |
* The name of the event fired when saving a translated string. | |
* | |
* This event allows you to perform custom actions whenever a translated | |
* string is saved. | |
* | |
* @Event | |
* | |
* @see \Drupal\locale\EventSubscriber\LocaleTranslationCacheTag | |
*/ | |
const SAVE_TRANSLATION = 'locale.save_translation'; | |
} |