FileStorage::getFilePath

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

public function getFilePath($name) {
  return $this->getCollectionDirectory() . '/' . $name . '.' . static::getFileExtension();
}
doc_Drupal
2016-10-29 09:13:41
Comments
Leave a Comment

Please login to continue.