class TimedTwigEngine extends TwigEngine
deprecated
since version 2.7, to be removed in 3.0. Use the Twig native profiler instead.
Times the time spent to render a template.
Methods
__construct(Twig_Environment $environment, TemplateNameParserInterface $parser, FileLocatorInterface $locator, Stopwatch $stopwatch) Constructor. | ||
string | render(string|TemplateReferenceInterface $name, array $parameters = array()) Renders a template. | |
stream(string|TemplateReferenceInterface $name, array $parameters = array()) Streams a template. | from TwigEngine | |
bool | exists(string|TemplateReferenceInterface $name) Returns true if the template exists. | from TwigEngine |
bool | supports(string|TemplateReferenceInterface $name) Returns true if this class is able to render the given template. | from TwigEngine |
setDefaultEscapingStrategy($strategy) deprecated | from TwigEngine | |
guessDefaultEscapingStrategy($filename) deprecated | from TwigEngine | |
Response | renderResponse(string $view, array $parameters = array(), Response $response = null) Renders a view and returns a Response. | from TwigEngine |
Details
__construct(Twig_Environment $environment, TemplateNameParserInterface $parser, FileLocatorInterface $locator, Stopwatch $stopwatch)
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.
setDefaultEscapingStrategy($strategy) deprecated
deprecated
since version 2.7, to be removed in 3.0. Inject the escaping strategy on \Twig_Environment instead.guessDefaultEscapingStrategy($filename) deprecated
deprecated
since version 2.7, to be removed in 3.0. Use the 'filename' strategy instead.
Please login to continue.