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 |
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 |