ConfigImporter::$processedConfiguration

List of configuration file changes processed by the import(). Type: array File core/lib/Drupal/Core/Config/ConfigImporter.php, line 85 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected $processedConfiguration;

ConfigImporter::$moduleInstaller

The module installer. Type: \Drupal\Core\Extension\ModuleInstallerInterface File core/lib/Drupal/Core/Config/ConfigImporter.php, line 159 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected $moduleInstaller;

ConfigImporter::$moduleHandler

The module handler. Type: \Drupal\Core\Extension\ModuleHandlerInterface File core/lib/Drupal/Core/Config/ConfigImporter.php, line 113 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected $moduleHandler;

ConfigImporter::$lock

The used lock backend instance. Type: \Drupal\Core\Lock\LockBackendInterface File core/lib/Drupal/Core/Config/ConfigImporter.php, line 71 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected $lock;

ConfigImporter::$extensionChangelist

List of extension changes to be processed by the import(). Type: array File core/lib/Drupal/Core/Config/ConfigImporter.php, line 99 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected $extensionChangelist;

ConfigImporter::$eventDispatcher

The event dispatcher used to notify subscribers. Type: \Symfony\Component\EventDispatcher\EventDispatcherInterface File core/lib/Drupal/Core/Config/ConfigImporter.php, line 57 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected $eventDispatcher;

ConfigImporter::$errors

A log of any errors encountered. If errors are logged during the validation event the configuration synchronization will not occur. If errors occur during an import then best efforts are made to complete the synchronization. Type: array File core/lib/Drupal/Core/Config/ConfigImporter.php, line 138 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected $errors = array();

ConfigImporter::$configManager

The configuration manager. Type: \Drupal\Core\Config\ConfigManagerInterface File core/lib/Drupal/Core/Config/ConfigImporter.php, line 64 Class ConfigImporter Defines a configuration importer. Namespace Drupal\Core\Config Code protected $configManager;

ConfigImporter

Defines a configuration importer. A config importer imports the changes into the configuration system. To determine which changes to import a StorageComparer in used. The ConfigImporter has a identifier which is used to construct event names. The events fired during an import are: ConfigEvents::IMPORT_VALIDATE: Events listening can throw a \Drupal\Core\Config\ConfigImporterException to prevent an import from occurring. ConfigEvents::IMPORT: Events listening can react to a successful import.

ConfigHandlerGroup::__construct

public ConfigHandlerGroup::__construct($type = NULL, $id = NULL) Constructs a new ConfigHandlerGroup object. File core/modules/views_ui/src/Form/Ajax/ConfigHandlerGroup.php, line 18 Class ConfigHandlerGroup Provides a form for configuring grouping information for a Views UI handler. Namespace Drupal\views_ui\Form\Ajax Code public function __construct($type = NULL, $id = NULL) { $this->setType($type); $this->setID($id); }