1 config.inc public ConfigFileStorage::isInitialized()

Check that the storage managed by this object is present and functional.

Return value

bool: TRUE on success, FALSE in case of an error.

Overrides ConfigStorageInterface::isInitialized

File

core/includes/config.inc, line 1303
This is the API for configuration storage.

Class

ConfigFileStorage
Defines the file storage controller.

Code

public function isInitialized() {
  return is_dir($this->directory);
}