summaryrefslogtreecommitdiff
path: root/libs/plugins/modifiercompiler.upper.php
diff options
context:
space:
mode:
Diffstat (limited to 'libs/plugins/modifiercompiler.upper.php')
-rw-r--r--libs/plugins/modifiercompiler.upper.php28
1 files changed, 0 insertions, 28 deletions
diff --git a/libs/plugins/modifiercompiler.upper.php b/libs/plugins/modifiercompiler.upper.php
deleted file mode 100644
index 96030518..00000000
--- a/libs/plugins/modifiercompiler.upper.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php
-/**
- * Smarty plugin
- *
- * @package Smarty
- * @subpackage PluginsModifierCompiler
- */
-/**
- * Smarty upper modifier plugin
- * Type: modifier
- * Name: lower
- * Purpose: convert string to uppercase
- *
- * @link https://www.smarty.net/manual/en/language.modifier.upper.php lower (Smarty online manual)
- * @author Uwe Tews
- *
- * @param array $params parameters
- *
- * @return string with compiled code
- */
-function smarty_modifiercompiler_upper($params)
-{
- if (Smarty::$_MBSTRING) {
- return 'mb_strtoupper((string) ' . $params[ 0 ] . ' ?? \'\', \'' . addslashes(Smarty::$_CHARSET) . '\')';
- }
- // no MBString fallback
- return 'strtoupper((string) ' . $params[ 0 ] . ' ?? \'\')';
-}