init
[garradin.git] / include / libs / template_lite / plugins / modifier.upper.php
1 <?php
2 /**
3 * template_lite upper modifier plugin
4 *
5 * Type: modifier
6 * Name: upper
7 * Purpose: Wrapper for the PHP 'strtoupper' function
8 */
9 function tpl_modifier_upper($string)
10 {
11 return strtoupper($string);
12 }
13 ?>