Search moodle.org's
Developer Documentation

See Release Notes
Long Term Support Release

  • Bug fixes for general core bugs in 3.9.x will end* 10 May 2021 (12 months).
  • Bug fixes for security issues in 3.9.x will end* 8 May 2023 (36 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.

Mustache helper to load strings from string_manager.

Copyright: 2015 Damyon Wiese
License: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
File Size: 78 lines (3 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

mustache_string_helper:: (1 method):
  str()


Class: mustache_string_helper  - X-Ref

This class will load language strings in a template.

str($text, Mustache_LambdaHelper $helper)   X-Ref
Read a lang string from a template and get it from get_string.

Some examples for calling this from a template are:

{{#str}}activity{{/str}}
{{#str}}actionchoice, core, {{#str}}delete{{/str}}{{/str}} (Nested)
{{#str}}addinganewto, core, {"what":"This", "to":"That"}{{/str}} (Complex $a)

The args are comma separated and only the first is required.
The last is a $a argument for get string. For complex data here, use JSON.

param: string $text The text to parse for arguments.
param: Mustache_LambdaHelper $helper Used to render nested mustache variables.
return: string