1 |
<?php
|
2 |
//------------------------------------------------------------------------
|
3 |
//Marshall Aviation Center FBO Management Software
|
4 |
//Copyright (C)2005 David T. Ashley
|
5 |
//
|
6 |
//This program is free software; you can redistribute it and/or
|
7 |
//modify it under the terms of the GNU General Public License
|
8 |
//as published by the Free Software Foundation; either version 2
|
9 |
//of the License, or (at your option) any later version.
|
10 |
//
|
11 |
//This program is distributed in the hope that it will be useful,
|
12 |
//but WITHOUT ANY WARRANTY; without even the implied warranty of
|
13 |
//MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
14 |
//GNU General Public License for more details.
|
15 |
//
|
16 |
//You should have received a copy of the GNU General Public License
|
17 |
//along with this program; if not, write to the Free Software
|
18 |
//Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
19 |
//
|
20 |
//The author (David T. Ashley) may be contacted by e-mail at dta@e3ft.com
|
21 |
//and by postal mail at P.O. Box 918, Marshall MI 49068.
|
22 |
//------------------------------------------------------------------------
|
23 |
//Configuration file. This file assigns configuration constants that
|
24 |
//might easily change in the operation of the site.
|
25 |
//------------------------------------------------------------------------
|
26 |
// C A L E N D A R I N G
|
27 |
//------------------------------------------------------------------------
|
28 |
$conf_calen_year_max = 2036;
|
29 |
/* The largest year that the scheduling system or any other calendaring
|
30 |
** functionality will deal with. This avoids the Unix 2037 problem.
|
31 |
** When the 2037 problem is cured, this constant can be upped.
|
32 |
** However, it is anybody's guess whether fossil fuels, general
|
33 |
** aviation, Unix, or PHP will be around decades in the future.
|
34 |
*/
|
35 |
$conf_calen_year_min = 2000;
|
36 |
/* The smallest year that the scheduling system or other calendaring
|
37 |
** functionality will deal with.
|
38 |
*/
|
39 |
//------------------------------------------------------------------------
|
40 |
// H T M L F O R M A T
|
41 |
//------------------------------------------------------------------------
|
42 |
$conf_htmlformat_human_readable = 1;
|
43 |
/* Used primarily for debugging. If this is set true, the HTML
|
44 |
** generated will often be nicely indented and commented. This kind
|
45 |
** of formatting for HTML is helpful for development and debugging
|
46 |
** (for example, when viewing the source HTML for a web page),
|
47 |
** but otherwise won't help the browser and will slow down page
|
48 |
** loads, especially for those with modem connections. This
|
49 |
** configuration tweak should probably be turned off after all the
|
50 |
** kinks are worked out.
|
51 |
*/
|
52 |
//------------------------------------------------------------------------
|
53 |
// M y S Q L D A T A B A S E A C C E S S
|
54 |
//------------------------------------------------------------------------
|
55 |
$conf_mysqldbaccess_name = "dbmacntr01";
|
56 |
/* The name of the MySQL database used.
|
57 |
*/
|
58 |
$conf_mysqldbaccess_userid = "macntr01";
|
59 |
/* The userid used to access the MySQL database.
|
60 |
*/
|
61 |
$conf_mysqldbaccess_passwd = "fa3338sugg0estion7x";
|
62 |
/* The password associated with the MySQL database. The
|
63 |
** userid/password pair must allow full access.
|
64 |
*/
|
65 |
//------------------------------------------------------------------------
|
66 |
?>
|