Code

Removed smarty
[gosa.git] / gosa-core / include / smarty / plugins / function.msgPool.php
diff --git a/gosa-core/include/smarty/plugins/function.msgPool.php b/gosa-core/include/smarty/plugins/function.msgPool.php
deleted file mode 100644 (file)
index c9c0275..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-<?php
-
-function smarty_function_msgPool($params, &$smarty)
-{
-       if(class_available("msgPool") && isset($params['type'])){
-               $parameter = array();
-               foreach($params as $para => $value){
-                       if(!preg_match("/^type$/i",$para)){
-                               $parameter[$para] = $value;
-                       }
-               }
-               if(is_callable("msgPool::".$params['type'])){
-                       echo call_user_func_array(array("msgPool",$params['type']), $parameter);
-               }else{
-                       trigger_error("Unknown msgPool function ".$params['type']);
-               }
-       }else{
-               trigger_error("Unknown class msgPool.");
-       }
-}
-?>