public function ConfigCollectionInfo::addCollection in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Config/ConfigCollectionInfo.php \Drupal\Core\Config\ConfigCollectionInfo::addCollection()
Adds a collection to the list of possible collections.
Parameters
string $collection: Collection name to add.
\Drupal\Core\Config\ConfigFactoryOverrideInterface: (optional) The configuration factory override service responsible for the collection.
Throws
\InvalidArgumentException Exception thrown if $collection is equal to \Drupal\Core\Config\StorageInterface::DEFAULT_COLLECTION
File
- core/
lib/ Drupal/ Core/ Config/ ConfigCollectionInfo.php, line 40 - Contains \Drupal\Core\Config\ConfigCollectionInfo.
Class
- ConfigCollectionInfo
- Gets information on all the possible configuration collections.
Namespace
Drupal\Core\ConfigCode
public function addCollection($collection, ConfigFactoryOverrideInterface $override_service = NULL) {
if ($collection == StorageInterface::DEFAULT_COLLECTION) {
throw new \InvalidArgumentException('Can not add the default collection to the ConfigCollectionInfo object');
}
$this->collections[$collection] = $override_service;
}