interface Twig_TemplateInterface in Translation template extractor 7.3
Same name and namespace in other branches
- 6.3 vendor/Twig/TemplateInterface.php \Twig_TemplateInterface
Interface implemented by all compiled templates.
@author Fabien Potencier <fabien@symfony.com>
Hierarchy
- interface \Twig_TemplateInterface
Expanded class hierarchy of Twig_TemplateInterface
All classes that implement Twig_TemplateInterface
Deprecated
since 1.12 (to be removed in 3.0)
File
- vendor/
Twig/ TemplateInterface.php, line 19
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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Twig_TemplateInterface:: |
constant | |||
Twig_TemplateInterface:: |
constant | |||
Twig_TemplateInterface:: |
public | function | Displays the template with the given context. | 1 |
Twig_TemplateInterface:: |
public | function | Returns the bound environment for this template. | 1 |
Twig_TemplateInterface:: |
constant | |||
Twig_TemplateInterface:: |
public | function | Renders the template with the given context and returns it as string. | 1 |