Revert "Issue #3414993 by alexpott: Add ConfigImporter to \Drupal\Core\Config\Importer\MissingContentEvent"
This reverts commit 476e65a1e1
.
merge-requests/5877/merge
parent
93cb498a88
commit
4f22397cc2
|
@ -698,7 +698,7 @@ class ConfigImporter {
|
||||||
$missing_content = $sandbox['missing_content']['data'];
|
$missing_content = $sandbox['missing_content']['data'];
|
||||||
}
|
}
|
||||||
if (!empty($missing_content)) {
|
if (!empty($missing_content)) {
|
||||||
$event = new MissingContentEvent($missing_content, $this);
|
$event = new MissingContentEvent($missing_content);
|
||||||
// Fire an event to allow listeners to create the missing content.
|
// Fire an event to allow listeners to create the missing content.
|
||||||
$this->eventDispatcher->dispatch($event, ConfigEvents::IMPORT_MISSING_CONTENT);
|
$this->eventDispatcher->dispatch($event, ConfigEvents::IMPORT_MISSING_CONTENT);
|
||||||
$sandbox['missing_content']['data'] = $event->getMissingContent();
|
$sandbox['missing_content']['data'] = $event->getMissingContent();
|
||||||
|
|
|
@ -2,15 +2,14 @@
|
||||||
|
|
||||||
namespace Drupal\Core\Config\Importer;
|
namespace Drupal\Core\Config\Importer;
|
||||||
|
|
||||||
use Drupal\Core\Config\ConfigImporter;
|
use Drupal\Component\EventDispatcher\Event;
|
||||||
use Drupal\Core\Config\ConfigImporterEvent;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Wraps a configuration event for event listeners.
|
* Wraps a configuration event for event listeners.
|
||||||
*
|
*
|
||||||
* @see \Drupal\Core\Config\ConfigEvents::IMPORT_MISSING_CONTENT
|
* @see \Drupal\Core\Config\ConfigEvents::IMPORT_MISSING_CONTENT
|
||||||
*/
|
*/
|
||||||
class MissingContentEvent extends ConfigImporterEvent {
|
class MissingContentEvent extends Event {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A list of missing content dependencies.
|
* A list of missing content dependencies.
|
||||||
|
@ -24,11 +23,8 @@ class MissingContentEvent extends ConfigImporterEvent {
|
||||||
*
|
*
|
||||||
* @param array $missing_content
|
* @param array $missing_content
|
||||||
* Missing content information.
|
* Missing content information.
|
||||||
* @param \Drupal\Core\Config\ConfigImporter $config_importer
|
|
||||||
* The config importer that triggered this event.
|
|
||||||
*/
|
*/
|
||||||
public function __construct(array $missing_content, ConfigImporter $config_importer) {
|
public function __construct(array $missing_content) {
|
||||||
parent::__construct($config_importer);
|
|
||||||
$this->missingContent = $missing_content;
|
$this->missingContent = $missing_content;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,6 @@ namespace Drupal\config_import_test;
|
||||||
|
|
||||||
use Drupal\Core\Config\ConfigCrudEvent;
|
use Drupal\Core\Config\ConfigCrudEvent;
|
||||||
use Drupal\Core\Config\ConfigEvents;
|
use Drupal\Core\Config\ConfigEvents;
|
||||||
use Drupal\Core\Config\ConfigImporter;
|
|
||||||
use Drupal\Core\Config\ConfigImporterEvent;
|
use Drupal\Core\Config\ConfigImporterEvent;
|
||||||
use Drupal\Core\Config\Importer\MissingContentEvent;
|
use Drupal\Core\Config\Importer\MissingContentEvent;
|
||||||
use Drupal\Core\State\StateInterface;
|
use Drupal\Core\State\StateInterface;
|
||||||
|
@ -73,9 +72,6 @@ class EventSubscriber implements EventSubscriberInterface {
|
||||||
* The missing content event.
|
* The missing content event.
|
||||||
*/
|
*/
|
||||||
public function onConfigImporterMissingContentTwo(MissingContentEvent $event) {
|
public function onConfigImporterMissingContentTwo(MissingContentEvent $event) {
|
||||||
if (!$event->getConfigImporter() instanceof ConfigImporter) {
|
|
||||||
throw new \LogicException('\Drupal\Core\Config\Importer\MissingContentEvent is missing the ConfigImporter');
|
|
||||||
}
|
|
||||||
if ($this->state->get('config_import_test.config_import_missing_content', FALSE) && $this->state->get('config_import_test.config_import_missing_content_two', FALSE) === FALSE) {
|
if ($this->state->get('config_import_test.config_import_missing_content', FALSE) && $this->state->get('config_import_test.config_import_missing_content_two', FALSE) === FALSE) {
|
||||||
$missing = $event->getMissingContent();
|
$missing = $event->getMissingContent();
|
||||||
$uuid = key($missing);
|
$uuid = key($missing);
|
||||||
|
|
Loading…
Reference in New Issue