<?php
/*
* Smarty plugin
* -------------------------------------------------------------
* Type: modifier
* Name: upper
* Purpose: convert string to uppercase
* -------------------------------------------------------------
*/
function smarty_modifier_upper($string)
{
return strtoupper($string);
}
?>