Proyectos de Subversion Moodle

Rev

Rev 1 | | Comparar con el anterior | Ultima modificación | Ver Log |

Rev Autor Línea Nro. Línea
1 efrain 1
<?php
2
// This file is part of Moodle - http://moodle.org/
3
//
4
// Moodle is free software: you can redistribute it and/or modify
5
// it under the terms of the GNU General Public License as published by
6
// the Free Software Foundation, either version 3 of the License, or
7
// (at your option) any later version.
8
//
9
// Moodle is distributed in the hope that it will be useful,
10
// but WITHOUT ANY WARRANTY; without even the implied warranty of
11
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
// GNU General Public License for more details.
13
//
14
// You should have received a copy of the GNU General Public License
15
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
16
 
17
/**
18
 * Custom Moodle engine for mustache.
19
 *
20
 * @copyright  2019 Ryan Wyllie <ryan@moodle.com>
21
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1441 ariadna 22
 * @package core
1 efrain 23
 */
24
 
25
namespace core\output;
26
 
27
/**
28
 * Custom Moodle engine for mustache.
29
 *
30
 * @copyright  2019 Ryan Wyllie <ryan@moodle.com>
31
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
1441 ariadna 32
 * @package core
1 efrain 33
 */
34
class mustache_engine extends \Mustache_Engine {
35
    /**
36
     * @var mustache_helper_collection
37
     */
38
    private $helpers;
39
 
40
    /**
41
     * @var string[] Names of helpers that aren't allowed to be called within other helpers.
42
     */
43
    private $disallowednestedhelpers = [];
44
 
45
    /**
46
     * Mustache engine constructor.
47
     *
48
     * This provides an additional option to the parent \Mustache_Engine implementation:
49
     * $options = [
50
     *      // A list of helpers (by name) to prevent from executing within the rendering
51
     *      // of other helpers.
52
     *      'disallowednestedhelpers' => ['js']
53
     * ];
54
     * @param array $options [description]
55
     */
56
    public function __construct(array $options = []) {
57
 
58
        if (isset($options['blacklistednestedhelpers'])) {
59
            debugging('blacklistednestedhelpers option is deprecated. Use disallowednestedhelpers instead.', DEBUG_DEVELOPER);
60
            $this->disallowednestedhelpers = $options['blacklistednestedhelpers'];
61
        }
62
 
63
        if (isset($options['disallowednestedhelpers'])) {
64
            $this->disallowednestedhelpers = $options['disallowednestedhelpers'];
65
        }
66
 
67
        parent::__construct($options);
68
    }
69
 
70
    /**
71
     * Get the current set of Mustache helpers.
72
     *
1441 ariadna 73
     * @see \Mustache_Engine::setHelpers
1 efrain 74
     *
75
     * @return \Mustache_HelperCollection
76
     */
1441 ariadna 77
    public function gethelpers() {
1 efrain 78
        if (!isset($this->helpers)) {
79
            $this->helpers = new mustache_helper_collection(null, $this->disallowednestedhelpers);
80
        }
81
 
82
        return $this->helpers;
83
    }
84
}