LocaleEvents.php in Drupal 8
Same filename and directory in other branches
Namespace
Drupal\localeFile
core/modules/locale/src/LocaleEvents.phpView source
<?php
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';
}
Classes
Name | Description |
---|---|
LocaleEvents | Defines events for locale translation. |