You are here

public function LocaleEvent::__construct in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/locale/src/LocaleEvent.php \Drupal\locale\LocaleEvent::__construct()
  2. 10 core/modules/locale/src/LocaleEvent.php \Drupal\locale\LocaleEvent::__construct()

Constructs a new LocaleEvent.

Parameters

array $lang_codes: Language codes for updated translations.

array $lids: (optional) List of string identifiers that have been updated / created.

File

core/modules/locale/src/LocaleEvent.php, line 34

Class

LocaleEvent
Defines a Locale event.

Namespace

Drupal\locale

Code

public function __construct(array $lang_codes, array $lids = []) {
  $this->langCodes = $lang_codes;
  $this->lids = $lids;
}