function ExcludedModulesEventSubscriber::getSubscribedEvents

Same name and namespace in other branches
  1. 9 core/lib/Drupal/Core/EventSubscriber/ExcludedModulesEventSubscriber.php \Drupal\Core\EventSubscriber\ExcludedModulesEventSubscriber::getSubscribedEvents()
  2. 8.9.x core/lib/Drupal/Core/EventSubscriber/ExcludedModulesEventSubscriber.php \Drupal\Core\EventSubscriber\ExcludedModulesEventSubscriber::getSubscribedEvents()
  3. 10 core/lib/Drupal/Core/EventSubscriber/ExcludedModulesEventSubscriber.php \Drupal\Core\EventSubscriber\ExcludedModulesEventSubscriber::getSubscribedEvents()

File

core/lib/Drupal/Core/EventSubscriber/ExcludedModulesEventSubscriber.php, line 57

Class

ExcludedModulesEventSubscriber
The event subscriber preventing excluded modules to be exported.

Namespace

Drupal\Core\EventSubscriber

Code

public static function getSubscribedEvents() : array {
    // React early on export and late on import.
    return [
        'config.transform.import' => [
            'onConfigTransformImport',
            -500,
        ],
        'config.transform.export' => [
            'onConfigTransformExport',
            500,
        ],
    ];
}

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