mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-11 12:03:14 +00:00
36 lines
886 B
PHP
Executable File
36 lines
886 B
PHP
Executable File
<?php
|
|
|
|
/*
|
|
* This file is part of Twig.
|
|
*
|
|
* (c) 2009 Fabien Potencier
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
interface Twig_TemplateInterface
|
|
{
|
|
/**
|
|
* 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
|
|
*/
|
|
public function display(array $context);
|
|
|
|
/**
|
|
* Returns the bound environment for this template.
|
|
*
|
|
* @return Twig_Environment The current environment
|
|
*/
|
|
public function getEnvironment();
|
|
}
|