ConfigImporter::getExtensionChangelist

public ConfigImporter::getExtensionChangelist($type, $op = NULL)

Gets a list changes for extensions.

Parameters

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

string $op: The change operation to get the unprocessed list for, either install or uninstall.

Return value

array An array of extension names.

File

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

Class

ConfigImporter
Defines a configuration importer.

Namespace

Drupal\Core\Config

Code

public function getExtensionChangelist($type, $op = NULL) {
  if ($op) {
    return $this->extensionChangelist[$type][$op];
  }
  return $this->extensionChangelist[$type];
}
doc_Drupal
2016-10-29 08:53:39
Comments
Leave a Comment

Please login to continue.