You are here

public function ConfigManager::loadConfigEntityByName in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/lib/Drupal/Core/Config/ConfigManager.php \Drupal\Core\Config\ConfigManager::loadConfigEntityByName()

Loads a configuration entity using the configuration name.

Parameters

string $name: The configuration object name.

Return value

\Drupal\Core\Entity\EntityInterface|null The configuration entity or NULL if it does not exist.

Overrides ConfigManagerInterface::loadConfigEntityByName

1 call to ConfigManager::loadConfigEntityByName()
ConfigManager::callOnDependencyRemoval in core/lib/Drupal/Core/Config/ConfigManager.php
Calls an entity's onDependencyRemoval() method.

File

core/lib/Drupal/Core/Config/ConfigManager.php, line 114
Contains \Drupal\Core\Config\ConfigManager.

Class

ConfigManager
The ConfigManager provides helper functions for the configuration system.

Namespace

Drupal\Core\Config

Code

public function loadConfigEntityByName($name) {
  $entity_type_id = $this
    ->getEntityTypeIdByName($name);
  if ($entity_type_id) {
    $entity_type = $this->entityManager
      ->getDefinition($entity_type_id);
    $id = substr($name, strlen($entity_type
      ->getConfigPrefix()) + 1);
    return $this->entityManager
      ->getStorage($entity_type_id)
      ->load($id);
  }
  return NULL;
}