static function LocaleConfigSubscriber::getSubscribedEvents

Implements EventSubscriberInterface::getSubscribedEvents().

Overrides EventSubscriberInterface::getSubscribedEvents

File

drupal/core/modules/locale/lib/Drupal/locale/LocaleConfigSubscriber.php, line 130
Contains \Drupal\locale\LocaleConfigSubscriber.

Class

LocaleConfigSubscriber
Locale Config helper

Namespace

Drupal\locale

Code

static function getSubscribedEvents() {
  $events['config.context'][] = array(
    'configContext',
    20,
  );
  $events['config.load'][] = array(
    'configLoad',
    20,
  );
  $events[KernelEvents::REQUEST][] = array(
    'onKernelRequestSetDefaultConfigContextLocale',
    20,
  );
  return $events;
}