interface Twig_TemplateInterface

Interface implemented by all compiled templates.

@author Fabien Potencier <fabien@symfony.com>

Hierarchy

Expanded class hierarchy of Twig_TemplateInterface

All classes that implement Twig_TemplateInterface

Deprecated

since 1.12 (to be removed in 2.0)

File

drupal/core/vendor/twig/twig/lib/Twig/TemplateInterface.php, line 18

View source
interface Twig_TemplateInterface {
  const ANY_CALL = 'any';
  const ARRAY_CALL = 'array';
  const METHOD_CALL = 'method';

  /**
   * Renders the template with the given context and returns it as string.
   *
   * @param array $context An array of parameters to pass to the template
   *
   * @return string The rendered template
   */
  public function render(array $context);

  /**
   * Displays the template with the given context.
   *
   * @param array $context An array of parameters to pass to the template
   * @param array $blocks  An array of blocks to pass to the template
   */
  public function display(array $context, array $blocks = array());

  /**
   * Returns the bound environment for this template.
   *
   * @return Twig_Environment The current environment
   */
  public function getEnvironment();

}

Members

Namesort descending Modifiers Type Description Overrides
Twig_TemplateInterface::ANY_CALL constant
Twig_TemplateInterface::ARRAY_CALL constant
Twig_TemplateInterface::display public function Displays the template with the given context. 1
Twig_TemplateInterface::getEnvironment public function Returns the bound environment for this template. 1
Twig_TemplateInterface::METHOD_CALL constant
Twig_TemplateInterface::render public function Renders the template with the given context and returns it as string. 1