summaryrefslogtreecommitdiff
path: root/libs/sysplugins/smarty_undefined_variable.php
diff options
context:
space:
mode:
Diffstat (limited to 'libs/sysplugins/smarty_undefined_variable.php')
-rw-r--r--libs/sysplugins/smarty_undefined_variable.php33
1 files changed, 0 insertions, 33 deletions
diff --git a/libs/sysplugins/smarty_undefined_variable.php b/libs/sysplugins/smarty_undefined_variable.php
deleted file mode 100644
index 6d31a8a0..00000000
--- a/libs/sysplugins/smarty_undefined_variable.php
+++ /dev/null
@@ -1,33 +0,0 @@
-<?php
-
-/**
- * class for undefined variable object
- * This class defines an object for undefined variable handling
- *
- * @package Smarty
- * @subpackage Template
- */
-class Smarty_Undefined_Variable extends Smarty_Variable
-{
- /**
- * Returns null for not existing properties
- *
- * @param string $name
- *
- * @return null
- */
- public function __get($name)
- {
- return null;
- }
-
- /**
- * Always returns an empty string.
- *
- * @return string
- */
- public function __toString()
- {
- return '';
- }
-}