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