static function SystemConfigSubscriber::getSubscribedEvents

Implements EventSubscriberInterface::getSubscribedEvents().

Overrides EventSubscriberInterface::getSubscribedEvents

File

drupal/core/modules/system/lib/Drupal/system/SystemConfigSubscriber.php, line 26
Contains \Drupal\system\SystemConfigSubscriber.

Class

SystemConfigSubscriber
System Config subscriber.

Namespace

Drupal\system

Code

static function getSubscribedEvents() {
  $events['config.importer.validate'][] = array(
    'onConfigImporterValidate',
    20,
  );
  return $events;
}