summaryrefslogtreecommitdiff
path: root/includes/common.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2000-12-23 23:25:28 +0000
committerDries Buytaert <dries@buytaert.net>2000-12-23 23:25:28 +0000
commit524773f6da48277ba951505b77d125e573e8ab03 (patch)
treece0f9c094c2258c96c0b96f3d0580028b75107fe /includes/common.inc
parent8d5b4e7b8615b636eaef8f50eaac45d27dc52b33 (diff)
downloadbrdo-524773f6da48277ba951505b77d125e573e8ab03.tar.gz
brdo-524773f6da48277ba951505b77d125e573e8ab03.tar.bz2
Yet another large batch of updates:
- I rearranged some of the code and clean-up some of the mess. - Added "blocks" which can be user defined/controlled: check to see. The positioning of blocks is rather basic for the moment, so I'm all open for input on that.
Diffstat (limited to 'includes/common.inc')
-rw-r--r--includes/common.inc16
1 files changed, 16 insertions, 0 deletions
diff --git a/includes/common.inc b/includes/common.inc
new file mode 100644
index 000000000..7886b9b65
--- /dev/null
+++ b/includes/common.inc
@@ -0,0 +1,16 @@
+<?
+
+include_once "includes/". getenv("HTTP_HOST") .".conf";
+include_once "includes/database.inc";
+include_once "includes/watchdog.inc";
+include_once "includes/function.inc";
+include_once "includes/droplet.inc";
+include_once "includes/module.inc";
+include_once "includes/theme.inc";
+include_once "includes/user.inc";
+
+global $user;
+
+$theme = load_theme();
+
+?>