0
0
Fork 0
mirror of https://github.com/salesagility/SuiteCRM.git synced 2025-02-19 03:53:55 +00:00
salesagility_SuiteCRM/include/Smarty/plugins/modifier.lower.php
2018-07-19 11:38:09 +01:00

24 lines
477 B
PHP
Executable 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);
}