Chris PeBenito 696b41
Chris PeBenito 696b41
/**
Chris PeBenito 696b41
 * Smarty plugin
Chris PeBenito 696b41
 * @package Smarty
Chris PeBenito 696b41
 * @subpackage plugins
Chris PeBenito 696b41
 */
Chris PeBenito 696b41
Chris PeBenito 696b41
Chris PeBenito 696b41
/**
Chris PeBenito 696b41
 * Smarty upper modifier plugin
Chris PeBenito 696b41
 *
Chris PeBenito 696b41
 * Type:     modifier
Chris PeBenito 696b41
 * Name:     upper
Chris PeBenito 696b41
 * Purpose:  convert string to uppercase
Chris PeBenito 696b41
 * @link http://smarty.php.net/manual/en/language.modifier.upper.php
Chris PeBenito 696b41
 *          upper (Smarty online manual)
Chris PeBenito 696b41
 * @param string
Chris PeBenito 696b41
 * @return string
Chris PeBenito 696b41
 */
Chris PeBenito 696b41
function smarty_modifier_upper($string)
Chris PeBenito 696b41
{
Chris PeBenito 696b41
    return strtoupper($string);
Chris PeBenito 696b41
}
Chris PeBenito 696b41
Chris PeBenito 696b41
?>