public function Twig_Loader_Filesystem::prependPath in Translation template extractor 6.3
Same name and namespace in other branches
- 7.3 vendor/Twig/Loader/Filesystem.php \Twig_Loader_Filesystem::prependPath()
Prepends a path where templates are stored.
Parameters
string $path A path where to look for templates:
string $namespace A path name:
Throws
File
- vendor/
Twig/ Loader/ Filesystem.php, line 107
Class
- Twig_Loader_Filesystem
- Loads template from the filesystem.
Code
public function prependPath($path, $namespace = self::MAIN_NAMESPACE) {
// invalidate the cache
$this->cache = array();
if (!is_dir($path)) {
throw new Twig_Error_Loader(sprintf('The "%s" directory does not exist.', $path));
}
$path = rtrim($path, '/\\');
if (!isset($this->paths[$namespace])) {
$this->paths[$namespace][] = $path;
}
else {
array_unshift($this->paths[$namespace], $path);
}
}