EventSubscriber.php

Same filename in this branch
  1. main core/modules/language/tests/language_events_test/src/EventSubscriber.php
  2. main core/modules/config/tests/config_collection_install_test/src/EventSubscriber.php
  3. main core/modules/config/tests/config_events_test/src/EventSubscriber.php
  4. main core/modules/config/tests/config_transformer_test/src/EventSubscriber.php
  5. main core/modules/config/tests/config_import_test/src/EventSubscriber.php
  6. main core/modules/system/tests/modules/module_install_class_loader_test2/src/EventSubscriber.php
Same filename and directory in other branches
  1. 10 core/modules/language/tests/language_events_test/src/EventSubscriber.php
  2. 11.x core/modules/language/tests/language_events_test/src/EventSubscriber.php
  3. 11.x core/modules/config/tests/config_collection_install_test/src/EventSubscriber.php
  4. 11.x core/modules/config/tests/config_events_test/src/EventSubscriber.php
  5. 11.x core/modules/config/tests/config_transformer_test/src/EventSubscriber.php
  6. 11.x core/modules/config/tests/config_import_test/src/EventSubscriber.php
  7. 11.x core/modules/system/tests/modules/module_install_class_loader_test2/src/EventSubscriber.php
  8. 11.x core/modules/system/tests/modules/module_install_class_loader_test1/src/EventSubscriber.php
  9. 10 core/modules/config/tests/config_collection_install_test/src/EventSubscriber.php
  10. 10 core/modules/config/tests/config_events_test/src/EventSubscriber.php
  11. 10 core/modules/config/tests/config_transformer_test/src/EventSubscriber.php
  12. 10 core/modules/config/tests/config_import_test/src/EventSubscriber.php
  13. 10 core/modules/system/tests/modules/module_install_class_loader_test2/src/EventSubscriber.php
  14. 10 core/modules/system/tests/modules/module_install_class_loader_test1/src/EventSubscriber.php
  15. 9 core/modules/config/tests/config_collection_install_test/src/EventSubscriber.php
  16. 9 core/modules/config/tests/config_events_test/src/EventSubscriber.php
  17. 9 core/modules/config/tests/config_transformer_test/src/EventSubscriber.php
  18. 9 core/modules/config/tests/config_import_test/src/EventSubscriber.php
  19. 9 core/modules/system/tests/modules/module_install_class_loader_test2/src/EventSubscriber.php
  20. 9 core/modules/system/tests/modules/module_install_class_loader_test1/src/EventSubscriber.php
  21. 8.9.x core/modules/config/tests/config_collection_install_test/src/EventSubscriber.php
  22. 8.9.x core/modules/config/tests/config_events_test/src/EventSubscriber.php
  23. 8.9.x core/modules/config/tests/config_transformer_test/src/EventSubscriber.php
  24. 8.9.x core/modules/config/tests/config_import_test/src/EventSubscriber.php
  25. 8.9.x core/modules/system/tests/modules/module_install_class_loader_test2/src/EventSubscriber.php
  26. 8.9.x core/modules/system/tests/modules/module_install_class_loader_test1/src/EventSubscriber.php

Namespace

Drupal\module_install_class_loader_test1

File

core/modules/system/tests/modules/module_install_class_loader_test1/src/EventSubscriber.php

View source
<?php

declare (strict_types=1);
namespace Drupal\module_install_class_loader_test1;

use Symfony\Component\EventDispatcher\EventSubscriberInterface;

/**
 * Defines an event subscriber that conditionally unsets the event list.
 *
 * @see Drupal\module_install_class_loader_test2\EventSubscriber
 * @see Drupal\Tests\system\Functional\Module\ClassLoaderTest::testMultipleModules()
 */
class EventSubscriber implements EventSubscriberInterface {
  
  /**
   * {@inheritdoc}
   */
  public static function getSubscribedEvents() : array {
    $events = [];
    // If the autoloader is not fixed during module install when the modules
    // module_install_class_loader_test1 and module_install_class_loader_test2
    // are enabled in the same request the class_exists() will cause a crash.
    // This is because \Composer\Autoload\ClassLoader maintains a negative
    // cache.
    if (class_exists('\\Drupal\\module_install_class_loader_test2\\EventSubscriber')) {
      $events = [];
    }
    return $events;
  }

}

Classes

Title Deprecated Summary
EventSubscriber Defines an event subscriber that conditionally unsets the event list.

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