Files
smarty/libs/sysplugins/smarty_method_unregister_object.php
Uwe.Tews 94b80e892b - renamed function names of autoloaded Smarty methods to Smarty_Method_....
- new security_class property (default is Smarty_Security)
2009-11-03 20:38:38 +00:00

29 lines
417 B
PHP

<?php
/**
* Smarty method Unregister_Object
*
* Unregister a PHP object
*
* @package Smarty
* @subpackage SmartyMethod
* @author Uwe Tews
*/
/**
*
* Unregister a PHP object
*/
/**
* Unregisters object
*
* @param string $object name of template object
*/
function Smarty_Method_Unregister_Object($smarty, $object)
{
unset($smarty->registered_objects[$object]);
}
?>