game/onyx2/modules/templates/smarty/sysplugins/smarty_method_unregister_object.php

29 lines
402 B
PHP
Raw Normal View History

2020-11-15 15:12:32 +00:00
<?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]);
}
?>