public function FileStorage::exists

Same name in this branch

Implements Drupal\Core\Config\StorageInterface::exists().

Overrides StorageInterface::exists

2 calls to FileStorage::exists()

File

drupal/core/lib/Drupal/Core/Config/FileStorage.php, line 72
Definition of Drupal\Core\Config\FileStorage.

Class

FileStorage
Defines the file storage controller.

Namespace

Drupal\Core\Config

Code

public function exists($name) {
  return file_exists($this
    ->getFilePath($name));
}