diff options
| author | emkael <emkael@tlen.pl> | 2016-12-27 14:47:01 +0100 |
|---|---|---|
| committer | emkael <emkael@tlen.pl> | 2016-12-27 14:47:01 +0100 |
| commit | 7085a0c2f7104a56a7e946c43ba0b5736be5f4e7 (patch) | |
| tree | 5518c72e3486f41c559be30e514be1917bf5724f /lib/smarty3/plugins/modifiercompiler.lower.php | |
| parent | 1a3d783d8957a6adbe49b1765b326805477e7856 (diff) | |
* smarty bundled
Diffstat (limited to 'lib/smarty3/plugins/modifiercompiler.lower.php')
| -rw-r--r-- | lib/smarty3/plugins/modifiercompiler.lower.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/lib/smarty3/plugins/modifiercompiler.lower.php b/lib/smarty3/plugins/modifiercompiler.lower.php new file mode 100644 index 0000000..a335eff --- /dev/null +++ b/lib/smarty3/plugins/modifiercompiler.lower.php @@ -0,0 +1,31 @@ +<?php +/** + * Smarty plugin + * + * @package Smarty + * @subpackage PluginsModifierCompiler + */ + +/** + * Smarty lower modifier plugin + * Type: modifier<br> + * Name: lower<br> + * Purpose: convert string to lowercase + * + * @link http://www.smarty.net/manual/en/language.modifier.lower.php lower (Smarty online manual) + * @author Monte Ohrt <monte at ohrt dot com> + * @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 ] . ')'; +} |
