public ConfigCollectionInfo::addCollection($collection, ConfigFactoryOverrideInterface $override_service = NULL)
Adds a collection to the list of possible collections.
Parameters
string $collection: Collection name to add.
\Drupal\Core\Config\ConfigFactoryOverrideInterface $override_service: (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 35
Class
- ConfigCollectionInfo
- Gets information on all the possible configuration collections.
Namespace
Drupal\Core\Config
Code
1 2 3 4 5 6 | 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 ; } |
Please login to continue.