aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/installation.php
blob: 93d25effa2c57e250dc4c4915e6cff7b64e6eead (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?php
/***************************************************************************
 *                                 install.php
 *                            -------------------
 *   begin                : Tuesday, Sept 11, 2001
 *   copyright            : (C) 2001 The phpBB Group
 *   email                : supportphpbb.com
 *
 *   $Id$
 *
 ***************************************************************************/

/***************************************************************************
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 ***************************************************************************/
$phpbb_root_path = '';
//
// Initialize a couple of needed variables.  It really doesn't matter what we
// put in userdata... It just has to be set so that message_die will work.
// Basically all of the following variables are to setup the template engine.
//
$userdata = "some false data"; 
$theme = array(
	'themes_id' => '2',
	'themes_name' => 'Default',
	'template_name' => 'Default',
	'td_color1' => 'CCCCCC', 
	'td_color2' => 'DDDDDD'
);
$default_language = 'english';
$default_template = 'Default';
					
$available_dbms[] = array(
	"LABEL" => "MySQL",
	"VALUE" => "mysql"
);
$available_dbms[] = array(
	"LABEL" => "MS SQL",
	"VALUE" => "mssql"
);
$available_dbms[] = array(
	"LABEL" => "Postgres",
	"VALUE" => "postgres"
);
$available_dbms[] = array(
	"LABEL" => "ODBC - MSAccess",
	"VALUE" => "odbc:access"
);
$available_dbms[] = array(
	"LABEL" => "ODBC - DB2",
	"VALUE" => "odbc:db2"
);
$available_lang[] = 'english';
?>