summaryrefslogtreecommitdiff
path: root/libs/sysplugins/smarty_internal_method_clearallassign.php
diff options
context:
space:
mode:
Diffstat (limited to 'libs/sysplugins/smarty_internal_method_clearallassign.php')
-rw-r--r--libs/sysplugins/smarty_internal_method_clearallassign.php36
1 files changed, 0 insertions, 36 deletions
diff --git a/libs/sysplugins/smarty_internal_method_clearallassign.php b/libs/sysplugins/smarty_internal_method_clearallassign.php
deleted file mode 100644
index 6fb0c8f3..00000000
--- a/libs/sysplugins/smarty_internal_method_clearallassign.php
+++ /dev/null
@@ -1,36 +0,0 @@
-<?php
-
-/**
- * Smarty Method ClearAllAssign
- *
- * Smarty::clearAllAssign() method
- *
- * @package Smarty
- * @subpackage PluginsInternal
- * @author Uwe Tews
- */
-class Smarty_Internal_Method_ClearAllAssign
-{
- /**
- * Valid for all objects
- *
- * @var int
- */
- public $objMap = 7;
-
- /**
- * clear all the assigned template variables.
- *
- * @api Smarty::clearAllAssign()
- * @link https://www.smarty.net/docs/en/api.clear.all.assign.tpl
- *
- * @param \Smarty_Internal_Data|\Smarty_Internal_Template|\Smarty $data
- *
- * @return \Smarty_Internal_Data|\Smarty_Internal_Template|\Smarty
- */
- public function clearAllAssign(Smarty_Internal_Data $data)
- {
- $data->tpl_vars = array();
- return $data;
- }
-}