interface TemplateReferenceInterface
Interface to be implemented by all templates.
Methods
array | all() Gets the template parameters. | |
TemplateReferenceInterface | set(string $name, string $value) Sets a template parameter. | |
string | get(string $name) Gets a template parameter. | |
string | getPath() Returns the path to the template. | |
string | getLogicalName() Returns the "logical" template name. | |
string | __toString() Returns the string representation as shortcut for getLogicalName(). |
Details
array all()
Gets the template parameters.
TemplateReferenceInterface set(string $name, string $value)
Sets a template parameter.
string get(string $name)
Gets a template parameter.
string getPath()
Returns the path to the template.
By default, it just returns the template name.
string getLogicalName()
Returns the "logical" template name.
The template name acts as a unique identifier for the template.
string __toString()
Returns the string representation as shortcut for getLogicalName().
Alias of getLogicalName().
Please login to continue.