From 28b08499da2501510ddfd6ce552f8fafd3eb7e41 Mon Sep 17 00:00:00 2001 From: the_systech Date: Fri, 28 Sep 2001 20:12:23 +0000 Subject: Updates for Install Process.... git-svn-id: file:///svn/phpbb/trunk@1102 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/installation.php | 59 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 phpBB/includes/installation.php (limited to 'phpBB/includes/installation.php') diff --git a/phpBB/includes/installation.php b/phpBB/includes/installation.php new file mode 100644 index 0000000000..93d25effa2 --- /dev/null +++ b/phpBB/includes/installation.php @@ -0,0 +1,59 @@ + '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'; +?> -- cgit v1.2.1