public function Twig_Environment::compileSource in Translation template extractor 6.3
Same name and namespace in other branches
- 7.3 vendor/Twig/Environment.php \Twig_Environment::compileSource()
Compiles a template source code.
Parameters
string $source The template source code:
string $name The template name:
Return value
string The compiled PHP source code
Throws
Twig_Error_Syntax When there was an error during tokenizing, parsing or compiling
1 call to Twig_Environment::compileSource()
- Twig_Environment::loadTemplate in vendor/
Twig/ Environment.php - Loads a template by name.
File
- vendor/
Twig/ Environment.php, line 556
Class
- Twig_Environment
- Stores the Twig configuration.
Code
public function compileSource($source, $name = null) {
try {
return $this
->compile($this
->parse($this
->tokenize($source, $name)));
} catch (Twig_Error $e) {
$e
->setTemplateFile($name);
throw $e;
} catch (Exception $e) {
throw new Twig_Error_Syntax(sprintf('An exception has been thrown during the compilation of a template ("%s").', $e
->getMessage()), -1, $name, $e);
}
}