protected function FileStorage::getFullPath

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

4 calls to FileStorage::getFullPath()
FileStorage::delete in drupal/core/lib/Drupal/Component/PhpStorage/FileStorage.php
Implements Drupal\Component\PhpStorage\PhpStorageInterface::delete().
FileStorage::exists in drupal/core/lib/Drupal/Component/PhpStorage/FileStorage.php
Implements Drupal\Component\PhpStorage\PhpStorageInterface::exists().
FileStorage::load in drupal/core/lib/Drupal/Component/PhpStorage/FileStorage.php
Implements Drupal\Component\PhpStorage\PhpStorageInterface::load().
FileStorage::save in drupal/core/lib/Drupal/Component/PhpStorage/FileStorage.php
Implements Drupal\Component\PhpStorage\PhpStorageInterface::save().
1 method overrides FileStorage::getFullPath()
MTimeProtectedFastFileStorage::getFullPath in drupal/core/lib/Drupal/Component/PhpStorage/MTimeProtectedFastFileStorage.php
Returns the full path where the file is or should be stored.

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;
}