aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/dummy.php
diff options
context:
space:
mode:
Diffstat (limited to 'engine/lib/dummy.php')
-rw-r--r--engine/lib/dummy.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/engine/lib/dummy.php b/engine/lib/dummy.php
new file mode 100644
index 000000000..a7f8760e0
--- /dev/null
+++ b/engine/lib/dummy.php
@@ -0,0 +1,29 @@
+<?php
+ /**
+ * Dummy class.
+ * This function contains dummy functions and classes which return safe dummy values. Essentially this is
+ * to make sure that things like calling echo page_owner_entity()->name don't cause a WSoD.
+ *
+ * @package Elgg
+ * @subpackage Core
+ * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
+ * @author Marcus Povey
+ * @copyright Curverider Ltd 2008
+ * @link http://elgg.org/
+ */
+
+ /**
+ * Dummy class.
+ * For every function call, get and set this function returns false.
+ */
+ class ElggDummy {
+
+ public function __call($method, $args) {
+ return false;
+ }
+
+ function __get($name) { return false; }
+
+ function __set($name, $value) { return false; }
+ }
+?> \ No newline at end of file