Submit
Path:
~
/
/
opt
/
psa
/
admin
/
plib
/
modules
/
grafana
/
vendor
/
mezzio
/
mezzio-template
/
src
/
File Content:
TemplateRendererInterface.php
<?php declare (strict_types=1); namespace PleskGrafana\Mezzio\Template; /** * Interface defining required template capabilities. */ interface TemplateRendererInterface { /** * @const string Value indicating all templates; used with `addDefaultParam()`. */ public const TEMPLATE_ALL = '*'; /** * Render a template, optionally with parameters. * * Implementations MUST support the `namespace::template` naming convention, * and allow omitting the filename extension. * * @param array|object $params */ public function render(string $name, $params = []) : string; /** * Add a template path to the engine. * * Adds a template path, with optional namespace the templates in that path * provide. */ public function addPath(string $path, ?string $namespace = null) : void; /** * Retrieve configured paths from the engine. * * @return TemplatePath[] */ public function getPaths() : array; /** * Add a default parameter to use with a template. * * Use this method to provide a default parameter to use when a template is * rendered. The parameter may be overridden by providing it when calling * `render()`, or by calling this method again with a null value. * * The parameter will be specific to the template name provided. To make * the parameter available to any template, pass the TEMPLATE_ALL constant * for the template name. * * If the default parameter existed previously, subsequent invocations with * the same template name and parameter name will overwrite. * * @param string $templateName Name of template to which the param applies; * use TEMPLATE_ALL to apply to all templates. * @param string $param Param name. */ public function addDefaultParam(string $templateName, string $param, mixed $value) : void; }
Submit
FILE
FOLDER
INFO
Name
Size
Permission
Action
Exception
---
0755
ArrayParametersTrait.php
1758 bytes
0644
DefaultParamsTrait.php
2261 bytes
0644
TemplatePath.php
635 bytes
0644
TemplateRendererInterface.php
1937 bytes
0644
N4ST4R_ID | Naxtarrr