mirror of
https://github.com/smarty-php/smarty.git
synced 2025-11-05 23:01:37 +01:00
28 lines
387 B
PHP
28 lines
387 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 Smarty_Method_Unregister_Resource($smarty, $type)
|
|
{
|
|
unset($smarty->plugins['resource'][$type]);
|
|
}
|
|
|
|
?>
|