public FileStorage::getFilePath($name)
Returns the path to the configuration file.
Return value
string The path to the configuration file.
File
- core/lib/Drupal/Core/Config/FileStorage.php, line 60
Class
- FileStorage
- Defines the file storage.
Namespace
Drupal\Core\Config
Code
1 2 3 | public function getFilePath( $name ) { return $this ->getCollectionDirectory() . '/' . $name . '.' . static ::getFileExtension(); } |
Please login to continue.