1 config.inc public ConfigFileStorage::getFilePath($name)

Returns the path to the configuration file.

Return value

string: The path to the configuration file.

File

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

Class

ConfigFileStorage
Defines the file storage controller.

Code

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