function EventSubscriber::getSubscribedEvents

Registers the methods in this class that should be listeners.

Return value

array An array of event listener definitions.

File

core/modules/config/tests/config_import_test/src/EventSubscriber.php, line 136

Class

EventSubscriber
Config import subscriber for config import events.

Namespace

Drupal\config_import_test

Code

public static function getSubscribedEvents() : array {
  $events[ConfigEvents::SAVE][] = [
    'onConfigSave',
    40,
  ];
  $events[ConfigEvents::DELETE][] = [
    'onConfigDelete',
    40,
  ];
  $events[ConfigEvents::IMPORT_VALIDATE] = [
    'onConfigImporterValidate',
  ];
  $events[ConfigEvents::IMPORT_MISSING_CONTENT] = [
    [
      'onConfigImporterMissingContentOne',
    ],
    [
      'onConfigImporterMissingContentTwo',
      -100,
    ],
  ];
  return $events;
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.