From 51609351f2c4b5082b7e6f0744cd3811c325303f Mon Sep 17 00:00:00 2001 From: emkael Date: Tue, 11 Oct 2016 14:01:29 +0200 Subject: * initial template --- .../plugins/modifiercompiler.from_charset.php | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 lib/smarty/plugins/modifiercompiler.from_charset.php (limited to 'lib/smarty/plugins/modifiercompiler.from_charset.php') diff --git a/lib/smarty/plugins/modifiercompiler.from_charset.php b/lib/smarty/plugins/modifiercompiler.from_charset.php new file mode 100644 index 0000000..93b568a --- /dev/null +++ b/lib/smarty/plugins/modifiercompiler.from_charset.php @@ -0,0 +1,34 @@ + + * Name: from_charset
+ * Purpose: convert character encoding from $charset to internal encoding + * + * @author Rodney Rehm + * @param array $params parameters + * @return string with compiled code + */ +function smarty_modifiercompiler_from_charset($params, $compiler) +{ + if (!Smarty::$_MBSTRING) { + // FIXME: (rodneyrehm) shouldn't this throw an error? + return $params[0]; + } + + if (!isset($params[1])) { + $params[1] = '"ISO-8859-1"'; + } + + return 'mb_convert_encoding(' . $params[0] . ', "' . addslashes(Smarty::$_CHARSET) . '", ' . $params[1] . ')'; +} + +?> \ No newline at end of file -- cgit v1.2.3