Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_unregister_object.php
1 <?php
3 /**
4 * Smarty method Unregister_Object
5
6 * Unregister a PHP object
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14
15 * Unregister a PHP object
16 */
18     /**
19     * Unregisters object
20     * 
21     * @param string $object name of template object
22     */
23      function  Smarty_Method_Unregister_Object($smarty, $object)
24     {
25         unset($smarty->registered_objects[$object]);
26     } 
28 ?>