protected function MTimeProtectedFastFileStorage::getContainingDirectoryFullPath

protected MTimeProtectedFastFileStorage::getContainingDirectoryFullPath($name)

Gets the full path of the containing directory where the file is or should be stored.

Parameters

string $name: The virtual file name. Can be a relative path.

Return value

string The full path of the containing directory where the file is or should be stored.

File

core/lib/Drupal/Component/PhpStorage/MTimeProtectedFastFileStorage.php, line 196

Class

MTimeProtectedFastFileStorage
Stores PHP code in files with securely hashed names.

Namespace

Drupal\Component\PhpStorage

Code

protected function getContainingDirectoryFullPath($name) {
  // Remove the .php file extension from the directory name.
  // Within a single directory, a subdirectory cannot have the same name as a
  // file. Thus, when switching between MTimeProtectedFastFileStorage and
  // FileStorage, the subdirectory or the file cannot be created in case the
  // other file type exists already.
  if (substr($name, -4) === '.php') {
    $name = substr($name, 0, -4);
  }
  return $this->directory . '/' . str_replace('/', '#', $name);
}

© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Component!PhpStorage!MTimeProtectedFastFileStorage.php/function/MTimeProtectedFastFileStorage::getContainingDirectoryFullPath/8.1.x