public function Twig_Loader_Filesystem::getSource in Translation template extractor 6.3
Same name and namespace in other branches
- 7.3 vendor/Twig/Loader/Filesystem.php \Twig_Loader_Filesystem::getSource()
Gets the source code of a template, given its name.
Parameters
string $name The name of the template to load:
Return value
string The template source code
Throws
Twig_Error_Loader When $name is not found
Overrides Twig_LoaderInterface::getSource
File
- vendor/
Twig/ Loader/ Filesystem.php, line 128
Class
- Twig_Loader_Filesystem
- Loads template from the filesystem.
Code
public function getSource($name) {
return file_get_contents($this
->findTemplate($name));
}