class TwigEngine implements EngineInterface, StreamingEngineInterface
This engine knows how to render Twig templates.
Methods
__construct(Twig_Environment $environment, TemplateNameParserInterface $parser) Constructor. | ||
string | render(string|TemplateReferenceInterface $name, array $parameters = array()) Renders a template. | |
stream(string|TemplateReferenceInterface $name, array $parameters = array()) Streams a template. | ||
bool | exists(string|TemplateReferenceInterface $name) Returns true if the template exists. | |
bool | supports(string|TemplateReferenceInterface $name) Returns true if this class is able to render the given template. |
Details
__construct(Twig_Environment $environment, TemplateNameParserInterface $parser)
Constructor.
string render(string|TemplateReferenceInterface $name, array $parameters = array())
Renders a template.
stream(string|TemplateReferenceInterface $name, array $parameters = array())
Streams a template.
The implementation should output the content directly to the client.
bool exists(string|TemplateReferenceInterface $name)
Returns true if the template exists.
bool supports(string|TemplateReferenceInterface $name)
Returns true if this class is able to render the given template.
Please login to continue.