1.20.x config_database_storage.inc | public ConfigDatabaseStorage::getFilePath($name) |
Returns the path to the configuration file.
Return value
string: The path to the configuration file.
File
- drivers/
config_database/ config_database_storage.inc, line 138
Class
- ConfigDatabaseStorage
- Defines the database storage controller.
Code
public function getFilePath($name) {
return 'db:/' . $this->database . '/' . $this->table . '/' . $name;
}