class TimedPhpEngine extends PhpEngine
Times the time spent to render a template.
protected | $loader | from PhpEngine | |
protected | $current | from PhpEngine | |
protected HelperInterface[] | $helpers | from PhpEngine | |
protected | $parents | from PhpEngine | |
protected | $stack | from PhpEngine | |
protected | $charset | from PhpEngine | |
protected | $cache | from PhpEngine | |
protected | $escapers | from PhpEngine | |
static protected | $escaperCache | from PhpEngine | |
protected | $globals | from PhpEngine | |
protected | $parser | from PhpEngine | |
protected | $container | from PhpEngine | |
protected | $stopwatch |
__construct(TemplateNameParserInterface $parser, ContainerInterface $container, LoaderInterface $loader, Stopwatch $stopwatch, GlobalVariables $globals = null) | ||
string | render(string|TemplateReferenceInterface $name, array $parameters = array()) Renders a template. | |
bool | exists(string|TemplateReferenceInterface $name) Returns true if the template exists. | from PhpEngine |
bool | supports(string|TemplateReferenceInterface $name) Returns true if this class is able to render the given template. | from PhpEngine |
string|false | evaluate(Storage $template, array $parameters = array()) Evaluates a template. | from PhpEngine |
HelperInterface | offsetGet(string $name) Gets a helper value. | from PhpEngine |
bool | offsetExists(string $name) Returns true if the helper is defined. | from PhpEngine |
offsetSet(HelperInterface $name, string $value) Sets a helper. | from PhpEngine | |
offsetUnset(string $name) Removes a helper. | from PhpEngine | |
addHelpers(array $helpers) Adds some helpers. | from PhpEngine | |
setHelpers(array $helpers) Sets the helpers. | from PhpEngine | |
set(HelperInterface $helper, string $alias = null) Sets a helper. | from PhpEngine | |
bool | has(string $name) Returns true if the helper if defined. | from PhpEngine |
HelperInterface | get(string $name) Gets a helper value. | from PhpEngine |
extend(string $template) Decorates the current template with another one. | from PhpEngine | |
string | escape(mixed $value, string $context = 'html') Escapes a string by using the current charset. | from PhpEngine |
setCharset(string $charset) Sets the charset to use. | from PhpEngine | |
string | getCharset() Gets the current charset. | from PhpEngine |
setEscaper(string $context, callable $escaper) Adds an escaper for the given context. | from PhpEngine | |
callable | getEscaper(string $context) Gets an escaper for a given context. | from PhpEngine |
addGlobal(string $name, mixed $value) | from PhpEngine | |
array | getGlobals() Returns the assigned globals. | from PhpEngine |
initializeEscapers() Initializes the built-in escapers. | from PhpEngine | |
LoaderInterface | getLoader() Gets the loader associated with this engine. | from PhpEngine |
Storage | load(string|TemplateReferenceInterface $name) Loads the given template. | from PhpEngine |
Response | renderResponse(string $view, array $parameters = array(), Response $response = null) Renders a view and returns a Response. | from PhpEngine |
TemplateNameParserInterface | $parser | A TemplateNameParserInterface instance |
ContainerInterface | $container | |
LoaderInterface | $loader | A loader instance |
Stopwatch | $stopwatch | |
GlobalVariables | $globals |
Renders a template.
string|TemplateReferenceInterface | $name | A template name or a TemplateReferenceInterface instance |
array | $parameters | An array of parameters to pass to the template |
string | The evaluated template as a string |
RuntimeException | if the template cannot be rendered |
Returns true if the template exists.
string|TemplateReferenceInterface | $name | A template name or a TemplateReferenceInterface instance |
bool | true if the template exists, false otherwise |
RuntimeException | if the engine cannot handle the template name |
Returns true if this class is able to render the given template.
string|TemplateReferenceInterface | $name | A template name or a TemplateReferenceInterface instance |
bool | true if this class supports the given template, false otherwise |
Evaluates a template.
Storage | $template | The template to render |
array | $parameters | An array of parameters to pass to the template |
string|false | The evaluated template, or false if the engine is unable to render the template |
InvalidArgumentException |
Gets a helper value.
string | $name | The helper name |
HelperInterface | The helper value |
InvalidArgumentException | if the helper is not defined |
Returns true if the helper is defined.
string | $name | The helper name |
bool | true if the helper is defined, false otherwise |
Sets a helper.
HelperInterface | $name | The helper instance |
string | $value | An alias |
Removes a helper.
string | $name | The helper name |
LogicException |
Adds some helpers.
array | $helpers | An array of helper |
Sets the helpers.
array | $helpers | An array of helper |
Sets a helper.
HelperInterface | $helper | The helper instance |
string | $alias | An alias |
Returns true if the helper if defined.
string | $name | The helper name |
bool | true if the helper is defined, false otherwise |
Gets a helper value.
string | $name | The helper name |
HelperInterface | The helper instance |
InvalidArgumentException | if the helper is not defined |
Decorates the current template with another one.
string | $template | The decorator logical name |
Escapes a string by using the current charset.
mixed | $value | A variable to escape |
string | $context | The context name |
string | The escaped value |
Sets the charset to use.
string | $charset | The charset |
Gets the current charset.
string | The current charset |
Adds an escaper for the given context.
string | $context | The escaper context (html, js, ...) |
callable | $escaper | A PHP callable |
Gets an escaper for a given context.
string | $context | The context name |
callable | $escaper A PHP callable |
InvalidArgumentException |
string | $name | |
mixed | $value |
Returns the assigned globals.
array |
Initializes the built-in escapers.
Each function specifies a way for applying a transformation to a string passed to it. The purpose is for the string to be "escaped" so it is suitable for the format it is being displayed in.
For example, the string: "It's required that you enter a username & password.\n" If this were to be displayed as HTML it would be sensible to turn the ampersand into '&' and the apostrophe into '&aps;'. However if it were going to be used as a string in JavaScript to be displayed in an alert box it would be right to leave the string as-is, but c-escape the apostrophe and the new line.
For each function there is a define to avoid problems with strings being incorrectly specified.
Gets the loader associated with this engine.
LoaderInterface | A LoaderInterface instance |
Loads the given template.
string|TemplateReferenceInterface | $name | A template name or a TemplateReferenceInterface instance |
Storage | A Storage instance |
InvalidArgumentException | if the template cannot be found |
Renders a view and returns a Response.
string | $view | The view name |
array | $parameters | An array of parameters to pass to the view |
Response | $response | A Response instance |
Response | A Response instance |
RuntimeException | if the template cannot be rendered |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
https://api.symfony.com/4.1/Symfony/Bundle/FrameworkBundle/Templating/TimedPhpEngine.html