MediaWiki REL1_39
TemplateParser Class Reference

Public Member Functions

 __construct ( $templateDir=null, ?BagOStuff $cache=null)
 
 enableRecursivePartials ( $enable)
 Enable/disable the use of recursive partials.
 
 processTemplate ( $templateName, $args, array $scopes=[])
 Returns HTML for a given template by calling the template function with the given args.
 

Protected Member Functions

 compile ( $templateName)
 Compile the Mustache template into PHP code using LightnCandy.
 
 getTemplate ( $templateName)
 Returns a given template function if found, otherwise throws an exception.
 
 getTemplateFilename ( $templateName)
 Constructs the location of the source Mustache template.
 

Protected Attributes

int $compileFlags
 Compilation flags passed to LightnCandy.
 
callable[] $renderers
 Array of cached rendering functions.
 
string $templateDir
 The path to the Mustache templates.
 

Detailed Description

Definition at line 28 of file TemplateParser.php.

Constructor & Destructor Documentation

◆ __construct()

TemplateParser::__construct ( $templateDir = null,
?BagOStuff $cache = null )
Parameters
string | null$templateDir
BagOStuff | null$cacheRead-write cache

Definition at line 57 of file TemplateParser.php.

References $cache, $templateDir, and CACHE_ANYTHING.

Member Function Documentation

◆ compile()

TemplateParser::compile ( $templateName)
protected

Compile the Mustache template into PHP code using LightnCandy.

The compilation step generates both PHP code and metadata, which is also returned in the result. An example result looks as follows:

[
'phpCode' => '...',
'files' => [
'/path/to/template.mustache',
'/path/to/partial1.mustache',
'/path/to/partial2.mustache',
'filesHash' => '...'
]

The files entry is a list of the files read during the compilation of the template. Each entry is the fully-qualified filename, i.e. it includes path information.

The filesHash entry can be used to determine whether the template has changed since it was last compiled without compiling the template again. Currently, the filesHash entry is generated with FileContentsHasher::getFileContentsHash.

Parameters
string$templateNameThe name of the template
Returns
array An associative array containing the PHP code and metadata about its compilation
Exceptions
ExceptionThrown by LightnCandy if it could not compile the Mustache code
RuntimeExceptionIf LightnCandy could not compile the Mustache code but did not throw an exception. This exception is indicative of a bug in LightnCandy

Definition at line 210 of file TemplateParser.php.

References getTemplateFilename().

Referenced by getTemplate().

◆ enableRecursivePartials()

TemplateParser::enableRecursivePartials ( $enable)

Enable/disable the use of recursive partials.

Parameters
bool$enable

Definition at line 70 of file TemplateParser.php.

◆ getTemplate()

TemplateParser::getTemplate ( $templateName)
protected

Returns a given template function if found, otherwise throws an exception.

Parameters
string$templateNameThe name of the template (without file suffix)
Returns
callable
Exceptions
RuntimeExceptionWhen the template file cannot be found
RuntimeExceptionWhen the compiled template isn't callable. This is indicative of a bug in LightnCandy

Definition at line 105 of file TemplateParser.php.

References $compileFlags, and compile().

Referenced by processTemplate().

◆ getTemplateFilename()

TemplateParser::getTemplateFilename ( $templateName)
protected

Constructs the location of the source Mustache template.

Parameters
string$templateNameThe name of the template
Returns
string
Exceptions
UnexpectedValueExceptionIf $templateName attempts upwards directory traversal

Definition at line 84 of file TemplateParser.php.

Referenced by compile().

◆ processTemplate()

TemplateParser::processTemplate ( $templateName,
$args,
array $scopes = [] )

Returns HTML for a given template by calling the template function with the given args.

echo $templateParser->processTemplate(
'ExampleTemplate',
[
'username' => $user->getName(),
'message' => 'Hello!'
]
);
$templateParser
Parameters
string$templateNameThe name of the template
-taint$templateNameexec_misc
mixed$args
-taint$argsnone
array$scopes
-taint$scopesnone
Returns
string

Definition at line 289 of file TemplateParser.php.

References $args, and getTemplate().

Member Data Documentation

◆ $compileFlags

int TemplateParser::$compileFlags
protected

Compilation flags passed to LightnCandy.

Definition at line 51 of file TemplateParser.php.

Referenced by getTemplate().

◆ $renderers

callable [] TemplateParser::$renderers
protected

Array of cached rendering functions.

Definition at line 46 of file TemplateParser.php.

◆ $templateDir

string TemplateParser::$templateDir
protected

The path to the Mustache templates.

Definition at line 41 of file TemplateParser.php.

Referenced by __construct().


The documentation for this class was generated from the following file: