Welcome to mirror list, hosted at ThFree Co, Russian Federation.

modifier.htmlentities.php « plugins « libs « Smarty-2.6.0 « phpDocumentor « PhpDocumentor-1.3.2 « libs - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 72dcf7def672dbe27d24fe698495bd4acb69a205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php
/** @package Smarty
* @subpackage plugins */

/**
 * Smarty plugin
 * -------------------------------------------------------------
 * Type:     modifier
 * Name:     upper
 * Purpose:  convert string to uppercase
 * -------------------------------------------------------------
 */
function smarty_modifier_htmlentities($string)
{
	return htmlentities($string);
}

?>