Search moodle.org's
Developer Documentation

See Release Notes

  • Bug fixes for general core bugs in 3.11.x will end 14 Nov 2022 (12 months plus 6 months extension).
  • Bug fixes for security issues in 3.11.x will end 13 Nov 2023 (18 months plus 12 months extension).
  • PHP version: minimum PHP 7.3.0 Note: minimum PHP version has increased since Moodle 3.10. PHP 7.4.x is supported too.

Mustache helper to load strings from string_manager and perform HTML escaping on them.

Copyright: 2021 Shamim Rezaie <shamim@moodle.com>
License: http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
File Size: 68 lines (2 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

mustache_clean_string_helper:: (2 methods):
  __construct()
  cleanstr()


Class: mustache_clean_string_helper  - X-Ref

This class will load language strings in a template.

__construct()   X-Ref
Create new instance of mustache clean string helper.


cleanstr($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:

{{#cleanstr}}activity{{/cleanstr}}
{{#cleanstr}}actionchoice, core, {{#str}}delete{{/str}}{{/cleanstr}} (Together with the str helper)
{{#cleanstr}}addinganewto, core, {"what":"This", "to":"That"}{{/cleanstr}} (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