summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2000-06-10 19:10:51 +0000
committerDries Buytaert <dries@buytaert.net>2000-06-10 19:10:51 +0000
commit44a566c8ca813e1f1d4f1d32500c73f812ab96fe (patch)
treedfcc08666587f62012cd3f57ac6ae33260b050b2
parent4ce030b80dc29b93cc660f3e9cd69b6e09b71636 (diff)
downloadbrdo-44a566c8ca813e1f1d4f1d32500c73f812ab96fe.tar.gz
brdo-44a566c8ca813e1f1d4f1d32500c73f812ab96fe.tar.bz2
* admin.inc will include all admin related help-functions including the
already present header() and footer() functions.
-rw-r--r--admin.inc25
1 files changed, 25 insertions, 0 deletions
diff --git a/admin.inc b/admin.inc
new file mode 100644
index 000000000..7480000b2
--- /dev/null
+++ b/admin.inc
@@ -0,0 +1,25 @@
+<?
+
+
+function admin_header() {
+ include "config.inc";
+ ?>
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
+ <HTML>
+ <HEAD><TITLE><? echo $sitename; ?> - administration</TITLE></HEAD>
+ <STYLE>
+ body { font-family: helvetica, arial; }
+ h1 { font-size: 14pt; font-weight: bold; color: #006699; }
+ h2 { font-family: helvetica, arial; font-size: 12pt; font-weight: bold; }
+ h3 { font-family: helvetica, arial; font-size: 14pt; font-weight: bold; }
+ th { font-family: helvetica, arial; text-align: center; background-color: #C0C0C0; color: #447744; }
+ td { font-family: helvetica, arial; }
+ </STYLE>
+ <BODY BGCOLOR="#ffffff" LINK="#0000ff" VLINK="#000099" ALINK="#ff0000">
+ <?
+}
+
+function admin_footer() {
+}
+
+?> \ No newline at end of file