fusionpbx/resources/templates/engine/smarty/plugins/modifiercompiler.lower.php

30 lines
724 B
PHP
Raw Normal View History

2013-11-09 21:02:56 +01:00
<?php
/**
* Smarty plugin
2018-11-07 08:18:14 +01:00
*
* @package Smarty
2013-11-09 21:02:56 +01:00
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty lower modifier plugin
2018-11-07 08:18:14 +01:00
* Type: modifier
* Name: lower
2013-11-09 21:02:56 +01:00
* Purpose: convert string to lowercase
*
2018-11-07 08:18:14 +01:00
* @link http://www.smarty.net/manual/en/language.modifier.lower.php lower (Smarty online manual)
2013-11-09 21:02:56 +01:00
* @author Monte Ohrt <monte at ohrt dot com>
* @author Uwe Tews
2018-11-07 08:18:14 +01:00
*
2013-11-09 21:02:56 +01:00
* @param array $params parameters
2018-11-07 08:18:14 +01:00
*
2013-11-09 21:02:56 +01:00
* @return string with compiled code
*/
2018-11-07 08:18:14 +01:00
function smarty_modifiercompiler_lower($params)
2013-11-09 21:02:56 +01:00
{
if (Smarty::$_MBSTRING) {
2018-11-07 08:18:14 +01:00
return 'mb_strtolower(' . $params[ 0 ] . ', \'' . addslashes(Smarty::$_CHARSET) . '\')';
2013-11-09 21:02:56 +01:00
}
// no MBString fallback
2018-11-07 08:18:14 +01:00
return 'strtolower(' . $params[ 0 ] . ')';
2013-11-09 21:02:56 +01:00
}