protected function FileReadOnlyStorage::getFullPath

Returns the full path where the file is or should be stored.

2 calls to FileReadOnlyStorage::getFullPath()

File

drupal/core/lib/Drupal/Component/PhpStorage/FileReadOnlyStorage.php, line 69
Definition of Drupal\Component\PhpStorage\FileStorage.

Class

FileReadOnlyStorage
Reads code as regular PHP files, but won't write them.

Namespace

Drupal\Component\PhpStorage

Code

protected function getFullPath($name) {
  return $this->directory . '/' . $name;
}