diff options
Diffstat (limited to 'libs/sysplugins/smarty_internal_method_unregisterplugin.php')
| -rw-r--r-- | libs/sysplugins/smarty_internal_method_unregisterplugin.php | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/libs/sysplugins/smarty_internal_method_unregisterplugin.php b/libs/sysplugins/smarty_internal_method_unregisterplugin.php deleted file mode 100644 index 2431d5c2..00000000 --- a/libs/sysplugins/smarty_internal_method_unregisterplugin.php +++ /dev/null @@ -1,41 +0,0 @@ -<?php - -/** - * Smarty Method UnregisterPlugin - * - * Smarty::unregisterPlugin() method - * - * @package Smarty - * @subpackage PluginsInternal - * @author Uwe Tews - */ -class Smarty_Internal_Method_UnregisterPlugin -{ - /** - * Valid for Smarty and template object - * - * @var int - */ - public $objMap = 3; - - /** - * Registers plugin to be used in templates - * - * @api Smarty::unregisterPlugin() - * @link https://www.smarty.net/docs/en/api.unregister.plugin.tpl - * - * @param \Smarty_Internal_TemplateBase|\Smarty_Internal_Template|\Smarty $obj - * @param string $type plugin type - * @param string $name name of template tag - * - * @return \Smarty|\Smarty_Internal_Template - */ - public function unregisterPlugin(Smarty_Internal_TemplateBase $obj, $type, $name) - { - $smarty = $obj->_getSmartyObj(); - if (isset($smarty->registered_plugins[ $type ][ $name ])) { - unset($smarty->registered_plugins[ $type ][ $name ]); - } - return $obj; - } -} |
