class EventSubscriber in Zircon Profile 8
Same name in this branch
- 8 vendor/symfony/event-dispatcher/Tests/Debug/TraceableEventDispatcherTest.php \Symfony\Component\EventDispatcher\Tests\Debug\EventSubscriber
- 8 core/modules/config/tests/config_import_test/src/EventSubscriber.php \Drupal\config_import_test\EventSubscriber
- 8 core/modules/config/tests/config_collection_install_test/src/EventSubscriber.php \Drupal\config_collection_install_test\EventSubscriber
- 8 core/modules/config/tests/config_events_test/src/EventSubscriber.php \Drupal\config_events_test\EventSubscriber
Same name and namespace in other branches
- 8.0 core/modules/config/tests/config_collection_install_test/src/EventSubscriber.php \Drupal\config_collection_install_test\EventSubscriber
Hierarchy
- class \Drupal\config_collection_install_test\EventSubscriber implements EventSubscriberInterface
Expanded class hierarchy of EventSubscriber
1 string reference to 'EventSubscriber'
- config_collection_install_test.services.yml in core/
modules/ config/ tests/ config_collection_install_test/ config_collection_install_test.services.yml - core/modules/config/tests/config_collection_install_test/config_collection_install_test.services.yml
1 service uses EventSubscriber
- config_events_test.event_subscriber in core/
modules/ config/ tests/ config_collection_install_test/ config_collection_install_test.services.yml - Drupal\config_collection_install_test\EventSubscriber
File
- core/
modules/ config/ tests/ config_collection_install_test/ src/ EventSubscriber.php, line 15 - Contains \Drupal\config_collection_install_test\EventSubscriber.
Namespace
Drupal\config_collection_install_testView source
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_NAMES event.
*
* @param \Drupal\Core\Config\ConfigCollectionInfo $collection_info
* The configuration collection names event.
*/
public function addCollections(ConfigCollectionInfo $collection_info) {
$collections = $this->state
->get('config_collection_install_test.collection_names', array());
foreach ($collections as $collection) {
$collection_info
->addCollection($collection);
}
}
/**
* {@inheritdoc}
*/
static function getSubscribedEvents() {
$events[ConfigEvents::COLLECTION_INFO][] = array(
'addCollections',
);
return $events;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
EventSubscriber:: |
protected | property | The state key value store. | |
EventSubscriber:: |
public | function | Reacts to the ConfigEvents::COLLECTION_NAMES event. | |
EventSubscriber:: |
static | function |
Returns an array of event names this subscriber wants to listen to. Overrides EventSubscriberInterface:: |
|
EventSubscriber:: |
public | function | Constructs the Event Subscriber object. |