You are here

protected function StorageComparer::removeFromChangelist in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Config/StorageComparer.php \Drupal\Core\Config\StorageComparer::removeFromChangelist()
  2. 10 core/lib/Drupal/Core/Config/StorageComparer.php \Drupal\Core\Config\StorageComparer::removeFromChangelist()

Removes the entry from the given operation changelist for the given name.

Parameters

string $collection: The storage collection to operate on.

string $op: The changelist to act on. Either delete, create, rename or update.

string $name: The name of the configuration to remove.

2 calls to StorageComparer::removeFromChangelist()
StorageComparer::addChangelistRename in core/lib/Drupal/Core/Config/StorageComparer.php
Creates the rename changelist.
StorageComparer::moveRenameToUpdate in core/lib/Drupal/Core/Config/StorageComparer.php
Moves a rename operation to an update.

File

core/lib/Drupal/Core/Config/StorageComparer.php, line 337

Class

StorageComparer
Defines a config storage comparer.

Namespace

Drupal\Core\Config

Code

protected function removeFromChangelist($collection, $op, $name) {
  $key = array_search($name, $this->changelist[$collection][$op]);
  if ($key !== FALSE) {
    unset($this->changelist[$collection][$op][$key]);
  }
}