/home/techb158/exp.abdallabala.com/vendor/smarty/smarty/libs/plugins
Edit: /home/techb158/exp.abdallabala.com/vendor/smarty/smarty/libs/plugins/modifiercompiler.lower.php (724B)
* @author Uwe Tews
*
* @param array $params parameters
*
* @return string with compiled code
*/
function smarty_modifiercompiler_lower($params)
{
if (Smarty::$_MBSTRING) {
return 'mb_strtolower(' . $params[ 0 ] . ', \'' . addslashes(Smarty::$_CHARSET) . '\')';
}
// no MBString fallback
return 'strtolower(' . $params[ 0 ] . ')';
}