class DelegatingEngine implements EngineInterface, StreamingEngineInterface
DelegatingEngine selects an engine for a given template.
Methods
__construct(array $engines = array()) 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. | |
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. |
Details
__construct(array $engines = array())
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.