public function ConfigSyncListerInterface::getExtensionChangelist in Configuration Synchronizer 8
Same name and namespace in other branches
- 8.2 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 36
Class
- ConfigSyncListerInterface
- Provides methods related to config listing.
Namespace
Drupal\config_syncCode
public function getExtensionChangelist($type, $name);