server/onyx/modules/templates/smarty/plugins/modifiercompiler.lower.php

32 lines
730 B
PHP
Raw Normal View History

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