public function InstallStorage::getFilePath in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/lib/Drupal/Core/Config/InstallStorage.php \Drupal\Core\Config\InstallStorage::getFilePath()
Overrides Drupal\Core\Config\FileStorage::getFilePath().
Returns the path to the configuration file.
Determines the owner and path to the default configuration file of a requested config object name located in the installation profile, a module, or a theme (in this order).
@todo Improve this when figuring out how we want to handle configuration in installation profiles. E.g., a config object actually has to be searched in the profile first (whereas the profile is never the owner), only afterwards check for a corresponding module or theme.
Return value
string The path to the configuration file.
Overrides FileStorage::getFilePath
File
- core/
lib/ Drupal/ Core/ Config/ InstallStorage.php, line 87 - Contains \Drupal\Core\Config\InstallStorage.
Class
- InstallStorage
- Storage used by the Drupal installer.
Namespace
Drupal\Core\ConfigCode
public function getFilePath($name) {
$folders = $this
->getAllFolders();
if (isset($folders[$name])) {
return $folders[$name] . '/' . $name . '.' . $this
->getFileExtension();
}
// If any code in the early installer requests a configuration object that
// does not exist anywhere as default config, then that must be mistake.
throw new StorageException("Missing configuration file: {$name}");
}