1.20.x config_file_storage.inc public ConfigFileStorage::getFilePath($name)

Returns the path to the configuration file.

Return value

string: The path to the configuration file.

File

drivers/config_file/config_file_storage.inc, line 83

Class

ConfigFileStorage
Defines the file storage controller.

Code

public function getFilePath($name) {
  return $this->directory . '/' . $name . '.json';
}