You are here

public function ConfigSyncListerInterface::getExtensionChangelist in Configuration Synchronizer 8.2

Same name and namespace in other branches
  1. 8 src/ConfigSyncListerInterface.php \Drupal\config_sync\ConfigSyncListerInterface::getExtensionChangelist()

Returns a change list for a given module or theme.

Parameters

string $type: The type of extension (module or theme).

string $name: The machine name of the extension.

Return value

array Associative array of configuration changes keyed by the type of change in which values are arrays of configuration item labels keyed by item name.

1 method overrides ConfigSyncListerInterface::getExtensionChangelist()
ConfigSyncLister::getExtensionChangelist in src/ConfigSyncLister.php
Returns a change list for a given module or theme.

File

src/ConfigSyncListerInterface.php, line 63

Class

ConfigSyncListerInterface
Provides methods related to config listing.

Namespace

Drupal\config_sync

Code

public function getExtensionChangelist($type, $name);