EventSubscriber.php
Same filename in this branch
- 9 core/modules/config/tests/config_events_test/src/EventSubscriber.php
- 9 core/modules/config/tests/config_transformer_test/src/EventSubscriber.php
- 9 core/modules/config/tests/config_import_test/src/EventSubscriber.php
- 9 core/modules/system/tests/modules/module_install_class_loader_test2/src/EventSubscriber.php
- 9 core/modules/system/tests/modules/module_install_class_loader_test1/src/EventSubscriber.php
Same filename in other branches
- 8.9.x core/modules/config/tests/config_collection_install_test/src/EventSubscriber.php
- 8.9.x core/modules/config/tests/config_events_test/src/EventSubscriber.php
- 8.9.x core/modules/config/tests/config_transformer_test/src/EventSubscriber.php
- 8.9.x core/modules/config/tests/config_import_test/src/EventSubscriber.php
- 8.9.x core/modules/system/tests/modules/module_install_class_loader_test2/src/EventSubscriber.php
- 8.9.x core/modules/system/tests/modules/module_install_class_loader_test1/src/EventSubscriber.php
- 10 core/modules/language/tests/language_events_test/src/EventSubscriber.php
- 10 core/modules/config/tests/config_collection_install_test/src/EventSubscriber.php
- 10 core/modules/config/tests/config_events_test/src/EventSubscriber.php
- 10 core/modules/config/tests/config_transformer_test/src/EventSubscriber.php
- 10 core/modules/config/tests/config_import_test/src/EventSubscriber.php
- 10 core/modules/system/tests/modules/module_install_class_loader_test2/src/EventSubscriber.php
- 10 core/modules/system/tests/modules/module_install_class_loader_test1/src/EventSubscriber.php
- 11.x core/modules/language/tests/language_events_test/src/EventSubscriber.php
- 11.x core/modules/config/tests/config_collection_install_test/src/EventSubscriber.php
- 11.x core/modules/config/tests/config_events_test/src/EventSubscriber.php
- 11.x core/modules/config/tests/config_transformer_test/src/EventSubscriber.php
- 11.x core/modules/config/tests/config_import_test/src/EventSubscriber.php
- 11.x core/modules/system/tests/modules/module_install_class_loader_test2/src/EventSubscriber.php
- 11.x core/modules/system/tests/modules/module_install_class_loader_test1/src/EventSubscriber.php
Namespace
Drupal\config_collection_install_testFile
-
core/
modules/ config/ tests/ config_collection_install_test/ src/ EventSubscriber.php
View source
<?php
namespace Drupal\config_collection_install_test;
use Drupal\Core\Config\ConfigCollectionInfo;
use Drupal\Core\Config\ConfigEvents;
use Drupal\Core\State\StateInterface;
use Symfony\Component\EventDispatcher\EventSubscriberInterface;
class EventSubscriber implements EventSubscriberInterface {
/**
* The state key value store.
*
* @var \Drupal\Core\State\StateInterface
*/
protected $state;
/**
* Constructs the Event Subscriber object.
*
* @param \Drupal\Core\State\StateInterface $state
* The state key value store.
*/
public function __construct(StateInterface $state) {
$this->state = $state;
}
/**
* Reacts to the ConfigEvents::COLLECTION_INFO event.
*
* @param \Drupal\Core\Config\ConfigCollectionInfo $collection_info
* The configuration collection info event.
*/
public function addCollections(ConfigCollectionInfo $collection_info) {
$collections = $this->state
->get('config_collection_install_test.collection_names', []);
foreach ($collections as $collection) {
$collection_info->addCollection($collection);
}
}
/**
* {@inheritdoc}
*/
public static function getSubscribedEvents() {
$events[ConfigEvents::COLLECTION_INFO][] = [
'addCollections',
];
return $events;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
EventSubscriber |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.