LocaleEvents.php 484 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace Drupal\locale;
  3. /**
  4. * Defines events for locale translation.
  5. *
  6. * @see \Drupal\Core\Config\ConfigCrudEvent
  7. */
  8. final class LocaleEvents {
  9. /**
  10. * The name of the event fired when saving a translated string.
  11. *
  12. * This event allows you to perform custom actions whenever a translated
  13. * string is saved.
  14. *
  15. * @Event
  16. *
  17. * @see \Drupal\locale\EventSubscriber\LocaleTranslationCacheTag
  18. */
  19. const SAVE_TRANSLATION = 'locale.save_translation';
  20. }