public function SourceStorage::getAllCollectionNames in Configuration installer 8
Gets the existing collections.
A configuration storage can contain multiple sets of configuration objects in partitioned collections. The collection key name identifies the current collection used.
Return value
array An array of existing collection names.
Overrides StorageInterface::getAllCollectionNames
File
- src/
Storage/ SourceStorage.php, line 133
Class
- SourceStorage
- Wraps the sync storage so the config_installer can make modifications.
Namespace
Drupal\config_installer\StorageCode
public function getAllCollectionNames() {
return $this->baseStorage
->getAllCollectionNames();
}