protected function ConfigImporter::setProcessedExtension

protected ConfigImporter::setProcessedExtension($type, $op, $name)

Sets an extension change as processed.

Parameters

string $type: The type of extension, either 'theme' or 'module'.

string $op: The change operation performed, either install or uninstall.

string $name: The name of the extension processed.

File

core/lib/Drupal/Core/Config/ConfigImporter.php, line 350

Class

ConfigImporter
Defines a configuration importer.

Namespace

Drupal\Core\Config

Code

protected function setProcessedExtension($type, $op, $name) {
  $this->processedExtensions[$type][$op][] = $name;
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Config!ConfigImporter.php/function/ConfigImporter::setProcessedExtension/8.1.x