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

29 lines
687 B
PHP
Raw Normal View History

2013-10-09 13:40:23 +00:00
<?php
/**
* Smarty plugin
*
* @package Smarty
* @subpackage PluginsModifierCompiler
*/
/**
* Smarty upper modifier plugin
2013-10-09 17:08:38 +00:00
*
2013-10-09 13:40:23 +00:00
* Type: modifier<br>
* Name: lower<br>
* Purpose: convert string to uppercase
2013-10-09 17:08:38 +00:00
*
2013-10-09 13:40:23 +00:00
* @link http://smarty.php.net/manual/en/language.modifier.upper.php lower (Smarty online manual)
2013-10-09 17:08:38 +00:00
* @author Uwe Tews
2013-10-09 13:40:23 +00:00
* @param array $params parameters
* @return string with compiled code
*/
function smarty_modifiercompiler_upper($params, $compiler)
{
if (Smarty::$_MBSTRING) {
return 'mb_strtoupper(' . $params[0] . ', \'' . addslashes(Smarty::$_CHARSET) . '\')' ;
}
// no MBString fallback
return 'strtoupper(' . $params[0] . ')';
2013-10-09 17:08:38 +00:00
}