10 * Smarty upper modifier plugin
14 * Purpose: convert string to uppercase
15 * @link http://smarty.php.net/manual/en/language.modifier.upper.php
16 * upper (Smarty online manual)
17 * @author Monte Ohrt <monte at ohrt dot com>
21 function smarty_modifier_upper($string)
23 return strtoupper($string);
This page took 1.020414 seconds and 4 git commands to generate.