Code

Updated smarty
[gosa.git] / gosa-core / include / smarty / sysplugins / smarty_method_unregister_resource.php
1 <?php
3 /**
4 * Smarty method Unregister_Resource
5
6 * Unregister a template resource
7
8 * @package Smarty
9 * @subpackage SmartyMethod
10 * @author Uwe Tews 
11 */
13 /**
14 * Unregister a template resource
15 */
17 /**
18 * Unregisters a resource
19
20 * @param string $type name of resource
21 */
22 function  Smarty_Method_Unregister_Resource($smarty, $type)
23 {
24     unset($smarty->plugins['resource'][$type]);
25
27 ?>