Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.10.x will end 8 November 2021 (12 months).
  • Bug fixes for security issues in 3.10.x will end 9 May 2022 (18 months).
  • PHP version: minimum PHP 7.2.0 Note: minimum PHP version has increased since Moodle 3.8. PHP 7.3.x and 7.4.x are supported too.

Differences Between: [Versions 310 and 311] [Versions 310 and 400] [Versions 310 and 401] [Versions 310 and 402] [Versions 310 and 403] [Versions 39 and 310]

(no description)

File Size: 692 lines (23 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

Mustache_Compiler:: (23 methods):
  compile()
  setPragmas()
  walk()
  renderInternal()
  renderInternal()
  writeCode()
  blockVar()
  blockArg()
  block()
  section()
  section()
  invertedSection()
  partial()
  parent()
  onlyBlockArgs()
  variable()
  getFilters()
  text()
  prepare()
  getEscape()
  getFindMethod()
  getCallable()
  flushIndent()


Class: Mustache_Compiler  - X-Ref

Mustache Compiler class.

This class is responsible for turning a Mustache token parse tree into normal PHP source code.
compile($source, array $tree, $name, $customEscape = false, $charset = 'UTF-8', $strictCallables = false, $entityFlags = ENT_COMPAT)   X-Ref
Compile a Mustache token parse tree into PHP source code.

param: string $source          Mustache Template source code
param: string $tree            Parse tree of Mustache tokens
param: string $name            Mustache Template class name
param: bool   $customEscape    (default: false)
param: string $charset         (default: 'UTF-8')
param: bool   $strictCallables (default: false)
param: int    $entityFlags     (default: ENT_COMPAT)
return: string Generated PHP source code

setPragmas(array $pragmas)   X-Ref
Enable pragmas across all templates, regardless of the presence of pragma
tags in the individual templates.

param: string[] $pragmas

walk(array $tree, $level = 0)   X-Ref
Helper function for walking the Mustache token parse tree.

param: array $tree  Parse tree of Mustache tokens
param: int   $level (default: 0)
return: string Generated PHP source code

renderInternal(Mustache_Context $context, $indent = \'\')   X-Ref
No description

renderInternal(Mustache_Context $context, $indent = \'\')   X-Ref
No description

writeCode($tree, $name)   X-Ref
Generate Mustache Template class PHP source.

param: array  $tree Parse tree of Mustache tokens
param: string $name Mustache Template class name
return: string Generated PHP source code

blockVar($nodes, $id, $start, $end, $otag, $ctag, $level)   X-Ref
Generate Mustache Template inheritance block variable PHP source.

param: array  $nodes Array of child tokens
param: string $id    Section name
param: int    $start Section start offset
param: int    $end   Section end offset
param: string $otag  Current Mustache opening tag
param: string $ctag  Current Mustache closing tag
param: int    $level
return: string Generated PHP source code

blockArg($nodes, $id, $start, $end, $otag, $ctag, $level)   X-Ref
Generate Mustache Template inheritance block argument PHP source.

param: array  $nodes Array of child tokens
param: string $id    Section name
param: int    $start Section start offset
param: int    $end   Section end offset
param: string $otag  Current Mustache opening tag
param: string $ctag  Current Mustache closing tag
param: int    $level
return: string Generated PHP source code

block({$indent = $buffer = \'\';%sreturn $buffer;}';/*** Generate Mustache Template inheritance block function PHP source.** @param array $nodes Array of child tokens** @return string key of new block function*/private function block($nodes)   X-Ref
No description

section({$buffer = \'\';if (%s)   X-Ref
No description

section($nodes, $id, $filters, $start, $end, $otag, $ctag, $level)   X-Ref
Generate Mustache Template section PHP source.

param: array    $nodes   Array of child tokens
param: string   $id      Section name
param: string[] $filters Array of filters
param: int      $start   Section start offset
param: int      $end     Section end offset
param: string   $otag    Current Mustache opening tag
param: string   $ctag    Current Mustache closing tag
param: int      $level
return: string Generated section PHP source code

invertedSection($nodes, $id, $filters, $level)   X-Ref
Generate Mustache Template inverted section PHP source.

param: array    $nodes   Array of child tokens
param: string   $id      Section name
param: string[] $filters Array of filters
param: int      $level
return: string Generated inverted section PHP source code

partial($id, $indent, $level)   X-Ref
Generate Mustache Template partial call PHP source.

param: string $id     Partial name
param: string $indent Whitespace indent to apply to partial
param: int    $level
return: string Generated partial call PHP source code

parent($id, $indent, array $children, $level)   X-Ref
Generate Mustache Template inheritance parent call PHP source.

param: string $id       Parent tag name
param: string $indent   Whitespace indent to apply to parent
param: array  $children Child nodes
param: int    $level
return: string Generated PHP source code

onlyBlockArgs(array $node)   X-Ref
Helper method for filtering out non-block-arg tokens.

param: array $node
return: bool True if $node is a block arg token

variable($id, $filters, $escape, $level)   X-Ref
Generate Mustache Template variable interpolation PHP source.

param: string   $id      Variable name
param: string[] $filters Array of filters
param: bool     $escape  Escape the variable value for output?
param: int      $level
return: string Generated variable interpolation PHP source

getFilters(array $filters, $level)   X-Ref
Generate Mustache Template variable filtering PHP source.

param: string[] $filters Array of filters
param: int      $level
return: string Generated filter PHP source

text($text, $level)   X-Ref
Generate Mustache Template output Buffer call PHP source.

param: string $text
param: int    $level
return: string Generated output Buffer call PHP source

prepare($text, $bonus = 0, $prependNewline = true, $appendNewline = false)   X-Ref
Prepare PHP source code snippet for output.

param: string $text
param: int    $bonus          Additional indent level (default: 0)
param: bool   $prependNewline Prepend a newline to the snippet? (default: true)
param: bool   $appendNewline  Append a newline to the snippet? (default: false)
return: string PHP source code snippet

getEscape($value = '$value')   X-Ref
Get the current escaper.

param: string $value (default: '$value')
return: string Either a custom callback, or an inline call to `htmlspecialchars`

getFindMethod($id)   X-Ref
Select the appropriate Context `find` method for a given $id.

The return value will be one of `find`, `findDot`, `findAnchoredDot` or `last`.

param: string $id Variable name
return: string `find` method name

getCallable($variable = '$value')   X-Ref
Helper function to compile strict vs lax "is callable" logic.

param: string $variable (default: '$value')
return: string "is callable" logic

flushIndent()   X-Ref
Get the current $indent prefix to write to the buffer.

return: string "$indent . " or ""