modifier.utf8encode.php
1 <?php
2 /**
3  * wCMF - wemove Content Management Framework
4  * Copyright (C) 2005-2015 wemove digital solutions GmbH
5  *
6  * Licensed under the terms of the MIT License.
7  *
8  * See the LICENSE file distributed with this work for
9  * additional information.
10  */
11 
12 /*
13 * Smarty plugin
14 * -------------------------------------------------------------
15 * File: modifier.utf8encode.php
16 * Type: function
17 * Name: utf8encode
18 * Purpose: encode a string to utf8
19 * Usage: e.g. {$stext|utf8encode}
20 * -------------------------------------------------------------
21 */
22 function smarty_modifier_utf8encode($text) {
23  return htmlspecialchars(utf8_encode($text));
24 }
25 ?>