/framework/vendor/smarty2/lib/plugins/modifier.lower.php
http://zoop.googlecode.com/ · PHP · 26 lines · 6 code · 3 blank · 17 comment · 0 complexity · 5520933762ceac07d49e658c52587279 MD5 · raw file
- <?php
- /**
- * Smarty plugin
- * @package Smarty
- * @subpackage plugins
- */
- /**
- * Smarty lower modifier plugin
- *
- * Type: modifier<br>
- * Name: lower<br>
- * Purpose: convert string to lowercase
- * @link http://smarty.php.net/manual/en/language.modifier.lower.php
- * lower (Smarty online manual)
- * @author Monte Ohrt <monte at ohrt dot com>
- * @param string
- * @return string
- */
- function smarty_modifier_lower($string)
- {
- return strtolower($string);
- }
- ?>