protected function FileStorage::getFullPath

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

4 calls to FileStorage::getFullPath()
1 method overrides FileStorage::getFullPath()

File

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

Class

FileStorage
Stores the code as regular PHP files.

Namespace

Drupal\Component\PhpStorage

Code

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