Proyectos de Subversion Moodle

Rev

Rev 1 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 1 Rev 1441
Línea 12... Línea 12...
12
// GNU General Public License for more details.
12
// GNU General Public License for more details.
13
//
13
//
14
// You should have received a copy of the GNU General Public License
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/>.
15
// along with Moodle.  If not, see <http://www.gnu.org/licenses/>.
Línea 16... Línea -...
16
 
-
 
17
/**
-
 
18
 * Mustache helper to load strings from string_manager and perform HTML escaping on them.
-
 
19
 *
-
 
20
 * @package    core
-
 
21
 * @category   output
-
 
22
 * @copyright  2021 Shamim Rezaie <shamim@moodle.com>
-
 
23
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
-
 
24
 */
-
 
25
 
16
 
Línea 26... Línea 17...
26
namespace core\output;
17
namespace core\output;
Línea 27... Línea 18...
27
 
18
 
28
use Mustache_LambdaHelper;
19
use Mustache_LambdaHelper;
29
 
20
 
-
 
21
/**
30
/**
22
 * This class will load language strings in a template.
31
 * This class will load language strings in a template.
23
 *
32
 *
24
 * @package core
33
 * @copyright  2021 Shamim Rezaie <shamim@moodle.com>
25
 * @copyright  2021 Shamim Rezaie <shamim@moodle.com>
34
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
26
 * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
35
 * @since      4.0
-
 
36
 */
27
 * @since      4.0
37
class mustache_clean_string_helper {
28
 */
Línea 38... Línea 29...
38
 
29
class mustache_clean_string_helper {
39
    /** @var mustache_string_helper A string helper instance that is being used internally for fetching strings */
30
    /** @var mustache_string_helper A string helper instance that is being used internally for fetching strings */