public function 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

1 call to Twig_Environment::compileSource()
Twig_Environment::loadTemplate in drupal/core/vendor/twig/twig/lib/Twig/Environment.php
Loads a template by name.

File

drupal/core/vendor/twig/twig/lib/Twig/Environment.php, line 533

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_Runtime(sprintf('An exception has been thrown during the compilation of a template ("%s").', $e
      ->getMessage()), -1, $name, $e);
  }
}