Files
smarty/libs/sysplugins/smarty_method_unregister_object.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

29 lines
402 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 unregister_object($smarty, $object)
{
unset($smarty->registered_objects[$object]);
}
?>