Code

Removed smarty
[gosa.git] / gosa-core / include / smarty / plugins / modifiercompiler.to_charset.php
diff --git a/gosa-core/include/smarty/plugins/modifiercompiler.to_charset.php b/gosa-core/include/smarty/plugins/modifiercompiler.to_charset.php
deleted file mode 100644 (file)
index e0877b7..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php\r
-/**\r
- * Smarty plugin\r
- *\r
- * @package Smarty\r
- * @subpackage PluginsModifierCompiler\r
- */\r
-\r
-/**\r
- * Smarty to_charset modifier plugin\r
- *\r
- * Type:     modifier<br>\r
- * Name:     to_charset<br>\r
- * Purpose:  convert character encoding from internal encoding to $charset\r
- *\r
- * @author Rodney Rehm\r
- * @param array $params parameters\r
- * @return string with compiled code\r
- */\r
-function smarty_modifiercompiler_to_charset($params, $compiler)\r
-{\r
-    if (!SMARTY_MBSTRING /* ^phpunit */&&empty($_SERVER['SMARTY_PHPUNIT_DISABLE_MBSTRING'])/* phpunit$ */) {\r
-        // FIXME: (rodneyrehm) shouldn't this throw an error?\r
-        return $params[0];\r
-    }\r
-\r
-    if (!isset($params[1])) {\r
-        $params[1] = '"ISO-8859-1"';\r
-    }\r
-\r
-    return 'mb_convert_encoding(' . $params[0] . ', ' . $params[1] . ', SMARTY_RESOURCE_CHAR_SET)';\r
-}\r
-\r
-?>
\ No newline at end of file