blob: 0998c28492f4e21deb4e0018cde854e55c93f9a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
<?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 */
?>
|