diff options
Diffstat (limited to 'config.class')
-rw-r--r-- | config.class | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/config.class b/config.class deleted file mode 100644 index 0998c28..0000000 --- a/config.class +++ /dev/null @@ -1,36 +0,0 @@ -<?php -/* -** $Id$ -** -** ITools - the Internet Tools Library -** -** Copyright (C) 1995-2003 by the ITools Authors. -** This program is free software; you can redistribute it and/or -** modify it under the terms of either the GNU General Public License -** or the GNU Lesser General Public License, as published by the Free -** Software Foundation. See http://www.gnu.org/licenses/ for details. -** -** Class it_config: Server-wide ITools Configuration -** Can be overloaded as needed by applications -*/ - -/** - * Class it_config: Server-wide ITools Configuration - * Can be overloaded as needed by applications - */ -class it_config -{ - /* Generic Paraphernalia (readable) */ - var $project_root; /* string: usually /www/gna.ch */ - -/** - * Constructor: Initializes public fields - */ -function it_config() -{ - $this->project_root = dirname($_SERVER['DOCUMENT_ROOT']); -} - -} /* End Class it_config */ - -?> |