ConfigCollectionInfo::getOverrideService

public ConfigCollectionInfo::getOverrideService($collection)

Gets the config factory override service responsible for the collection.

Parameters

string $collection: The configuration collection.

Return value

\Drupal\Core\Config\ConfigFactoryOverrideInterface|null The override service responsible for the collection if one exists. NULL if not.

File

core/lib/Drupal/Core/Config/ConfigCollectionInfo.php, line 70

Class

ConfigCollectionInfo
Gets information on all the possible configuration collections.

Namespace

Drupal\Core\Config

Code

public function getOverrideService($collection) {
  return isset($this->collections[$collection]) ? $this->collections[$collection] : NULL;
}
doc_Drupal
2016-10-29 08:52:14
Comments
Leave a Comment

Please login to continue.