Files
smarty/libs/sysplugins/smarty_method_unregister_resource.php
Uwe.Tews cf379474fd - change of filenames in sysplugins folder for internal spl_autoload function
- lexer/parser changed for increased compilation speed
2009-10-31 00:44:58 +00:00

28 lines
372 B
PHP

<?php
/**
* Smarty method Unregister_Resource
*
* Unregister a template resource
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
* Unregister a template resource
*/
/**
* Unregisters a resource
*
* @param string $type name of resource
*/
function Unregister_Resource($smarty, $type)
{
unset($smarty->plugins['resource'][$type]);
}
?>