Code

Updated smarty to 1.0.9
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_internal_nocache_insert.php
index 741efe3343ec1730d0bd6f62368919365c646113..76e97816e7a802dacc87d23ba2ae4001f6151d5b 100644 (file)
@@ -1,53 +1,49 @@
 <?php\r
+\r
 /**\r
  * Smarty Internal Plugin Nocache Insert\r
- *\r
+ * \r
  * Compiles the {insert} tag into the cache file\r
- *\r
+ * \r
  * @package Smarty\r
  * @subpackage Compiler\r
- * @author Uwe Tews\r
+ * @author Uwe Tews \r
  */\r
 \r
 /**\r
  * Smarty Internal Plugin Compile Insert Class\r
- *\r
- * @package Smarty\r
- * @subpackage Compiler\r
  */\r
 class Smarty_Internal_Nocache_Insert {\r
-\r
     /**\r
      * Compiles code for the {insert} tag into cache file\r
-     *\r
-     * @param string                   $_function insert function name\r
-     * @param array                    $_attr     array with paramter\r
-     * @param Smarty_Internal_Template $_template template object\r
-     * @param string                   $_script   script name to load or 'null'\r
-     * @param string                   $_assign   optional variable name\r
+     * \r
+     * @param string $_function insert function name\r
+     * @param array $_attr array with paramter\r
+     * @param object $template template object\r
+     * @param string $_script script name to load or 'null'\r
+     * @param string $_assign soptinal variable name\r
      * @return string compiled code\r
      */\r
-    public static function compile($_function, $_attr, $_template, $_script, $_assign = null)\r
+    static function compile($_function, $_attr, $_template, $_script, $_assign = null)\r
     {\r
         $_output = '<?php ';\r
         if ($_script != 'null') {\r
             // script which must be included\r
             // code for script file loading\r
             $_output .= "require_once '{$_script}';";\r
-        }\r
+        } \r
         // call insert\r
         if (isset($_assign)) {\r
             $_output .= "\$_smarty_tpl->assign('{$_assign}' , {$_function} (" . var_export($_attr, true) . ",\$_smarty_tpl), true);?>";\r
         } else {\r
             $_output .= "echo {$_function}(" . var_export($_attr, true) . ",\$_smarty_tpl);?>";\r
-        }\r
+        } \r
         $_tpl = $_template;\r
         while ($_tpl->parent instanceof Smarty_Internal_Template) {\r
             $_tpl = $_tpl->parent;\r
-        }\r
+        } \r
         return "/*%%SmartyNocache:{$_tpl->properties['nocache_hash']}%%*/" . $_output . "/*/%%SmartyNocache:{$_tpl->properties['nocache_hash']}%%*/";\r
-    }\r
-\r
-}\r
+    } \r
+} \r
 \r
 ?>
\ No newline at end of file