CachedStorage::exists

public CachedStorage::exists($name)

Returns whether a configuration object exists.

Parameters

string $name: The name of a configuration object to test.

Return value

bool TRUE if the configuration object exists, FALSE otherwise.

Overrides StorageInterface::exists

File

core/lib/Drupal/Core/Config/CachedStorage.php, line 55

Class

CachedStorage
Defines the cached storage.

Namespace

Drupal\Core\Config

Code

1
2
3
4
5
6
public function exists($name) {
  // The cache would read in the entire data (instead of only checking whether
  // any data exists), and on a potential cache miss, an additional storage
  // lookup would have to happen, so check the storage directly.
  return $this->storage->exists($name);
}
doc_Drupal
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.