XOOPS 2.5.6  Final
 All Classes Namespaces Files Functions Variables Pages
modifier.upper.php
Go to the documentation of this file.
1 <?php
21 function smarty_modifier_upper($string)
22 {
23  return strtoupper($string);
24 }
25 
26 ?>