public function ConfigImporter::getUnprocessed

Gets a list of unprocessed changes for a given operation.

Parameters

string $op: The change operation to get the unprocessed list for, either delete, create or update.

Return value

array An array of configuration names.

3 calls to ConfigImporter::getUnprocessed()
ConfigImporter::hasUnprocessedChanges in drupal/core/lib/Drupal/Core/Config/ConfigImporter.php
Checks if there are any unprocessed changes.
ConfigImporter::importConfig in drupal/core/lib/Drupal/Core/Config/ConfigImporter.php
Writes an array of config changes from the source to the target storage.
ConfigImporter::importInvokeOwner in drupal/core/lib/Drupal/Core/Config/ConfigImporter.php
Invokes import* methods on configuration entity storage controllers.

File

drupal/core/lib/Drupal/Core/Config/ConfigImporter.php, line 199
Contains \Drupal\Core\Config\ConfigImporter.

Class

ConfigImporter
Defines a configuration importer.

Namespace

Drupal\Core\Config

Code

public function getUnprocessed($op) {
  return array_diff($this->storageComparer
    ->getChangelist($op), $this->processed[$op]);
}