Added Canvas 1.1.0, originally not under SCM so no historical development records...
[canvas.git] / library / smarty / plugins / modifier.upper.php
blobb92a5a34ee536f48f617338dc3a24ea387c93339
1 <?php
2 /**
3 * Smarty plugin
4 * @package Smarty
5 * @subpackage plugins
6 */
9 /**
10 * Smarty upper modifier plugin
12 * Type: modifier<br>
13 * Name: upper<br>
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>
18 * @param string
19 * @return string
21 function smarty_modifier_upper($string)
23 return strtoupper($string);