aboutsummaryrefslogtreecommitdiffstats
path: root/object/BaseObject.php
diff options
context:
space:
mode:
Diffstat (limited to 'object/BaseObject.php')
-rw-r--r--object/BaseObject.php37
1 files changed, 0 insertions, 37 deletions
diff --git a/object/BaseObject.php b/object/BaseObject.php
deleted file mode 100644
index 14f0d8fd0..000000000
--- a/object/BaseObject.php
+++ /dev/null
@@ -1,37 +0,0 @@
-<?php
-if(class_exists('BaseObject'))
- return;
-
-require_once('boot.php');
-
-/**
- * Basic object
- *
- * Contains what is usefull to any object
- */
-class BaseObject {
- private static $app = null;
-
- /**
- * Get the app
- *
- * Same as get_app from boot.php
- */
- public function get_app() {
- if(self::$app)
- return self::$app;
-
- global $a;
- self::$app = $a;
-
- return self::$app;
- }
-
- /**
- * Set the app
- */
- public static function set_app($app) {
- self::$app = $app;
- }
-}
-?>