IP/libs/plugins/modifiercompiler.upper.php

30 lines
687 B
PHP
Raw Permalink Normal View History

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