function ConfigEntityStorage::has

Same name and namespace in other branches
  1. 11.x core/lib/Drupal/Core/Config/Entity/ConfigEntityStorage.php \Drupal\Core\Config\Entity\ConfigEntityStorage::has()

File

core/lib/Drupal/Core/Config/Entity/ConfigEntityStorage.php, line 307

Class

ConfigEntityStorage
Defines the storage class for configuration entities.

Namespace

Drupal\Core\Config\Entity

Code

protected function has($id, EntityInterface $entity) {
  $prefix = $this->getPrefix();
  $config = $this->configFactory
    ->get($prefix . $id);
  return !$config->isNew();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.