class DelegatingEngine extends DelegatingEngine implements EngineInterface
DelegatingEngine selects an engine for a given template.
Methods
__construct(ContainerInterface $container, array $engineIds) Constructor. | ||
string | render(string|TemplateReferenceInterface $name, array $parameters = array()) Renders a template. | from DelegatingEngine |
stream(string|TemplateReferenceInterface $name, array $parameters = array()) Streams a template. | from DelegatingEngine | |
bool | exists(string|TemplateReferenceInterface $name) Returns true if the template exists. | from DelegatingEngine |
addEngine(EngineInterface $engine) Adds an engine. | from DelegatingEngine | |
bool | supports(string|TemplateReferenceInterface $name) Returns true if this class is able to render the given template. | from DelegatingEngine |
EngineInterface | getEngine(string|TemplateReferenceInterface $name) Get an engine able to render the given template. | |
Response | renderResponse(string $view, array $parameters = array(), Response $response = null) Renders a view and returns a Response. |
Details
__construct(ContainerInterface $container, array $engineIds)
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.
addEngine(EngineInterface $engine)
Adds an engine.
bool supports(string|TemplateReferenceInterface $name)
Returns true if this class is able to render the given template.
EngineInterface getEngine(string|TemplateReferenceInterface $name)
Get an engine able to render the given template.
Please login to continue.