Initial commit: Kimai TMS
Kimai time management system (PHP 5.6 / MySQL) with custom extensions: - Budget tracking (ki_budget) - Change request form (ki_changerequest) - Invoice generation (ki_invoice) - Expense tracking (ki_expenses) - Flexi time (ki_flexitime) - Export, admin panel, timesheets, tasks, summary Database: ~900K time entries, 2,000+ users, 439 projects. Config: includes/autoconf.php — localhost/kimai/kimai
This commit is contained in:
74
includes/connect_mysql.php
Normal file
74
includes/connect_mysql.php
Normal file
@@ -0,0 +1,74 @@
|
||||
<?php
|
||||
/**
|
||||
* This file is part of
|
||||
* Kimai - Open Source Time Tracking // http://www.kimai.org
|
||||
* (c) 2006-2009 Kimai-Development-Team
|
||||
*
|
||||
* Kimai 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; Version 3, 29 June 2007
|
||||
*
|
||||
* Kimai is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with Kimai; If not, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/**
|
||||
* Connect to a mysql database using the MySQL extension in PHP.
|
||||
*/
|
||||
|
||||
// ==================================================================================
|
||||
// = check for additional database(s) and set $kga['server_database'] accordingly =
|
||||
// = $kga['server_database'] stays untouched if there is no entry in the =
|
||||
// = $server_ext_database array (for more info see /includes/vars.php) =
|
||||
// ==================================================================================
|
||||
if (isset($_REQUEST['database'])) {
|
||||
if ($_REQUEST['database']==true) {
|
||||
|
||||
$dbnr = $_REQUEST['database'] - 1;
|
||||
|
||||
$kga['server_database'] = $server_ext_database[$dbnr];
|
||||
|
||||
if ($server_ext_username[$dbnr] != '') {
|
||||
$kga['server_username'] = $server_ext_username[$dbnr];
|
||||
}
|
||||
if ($server_ext_password[$dbnr] != '') {
|
||||
$kga['server_password'] = $server_ext_password[$dbnr];
|
||||
}
|
||||
if ($server_ext_prefix[$dbnr] != '') {
|
||||
$kga['server_prefix'] = $server_ext_prefix[$dbnr];
|
||||
}
|
||||
}
|
||||
} else {
|
||||
if (isset($_COOKIE['kimai_db']) && $_COOKIE['kimai_db'] == true) {
|
||||
|
||||
$dbnr = $_COOKIE['kimai_db'] - 1;
|
||||
|
||||
$kga['server_database'] = $server_ext_database[$dbnr];
|
||||
|
||||
if ($server_ext_username[$dbnr] != '') {
|
||||
$kga['server_username'] = $server_ext_username[$dbnr];
|
||||
}
|
||||
if ($server_ext_password[$dbnr] != '') {
|
||||
$kga['server_password'] = $server_ext_password[$dbnr];
|
||||
}
|
||||
if ($server_ext_prefix[$dbnr] != '') {
|
||||
$kga['server_prefix'] = $server_ext_prefix[$dbnr];
|
||||
}
|
||||
}
|
||||
}
|
||||
// ===========================================================================
|
||||
|
||||
include(WEBROOT."libraries/mysql.class.php");
|
||||
|
||||
if (isset($utf8) && $utf8) {
|
||||
$conn = new MySQL(true, $kga['server_database'], $kga['server_hostname'], $kga['server_username'], $kga['server_password'],"utf-8");
|
||||
} else {
|
||||
$conn = new MySQL(true, $kga['server_database'], $kga['server_hostname'], $kga['server_username'], $kga['server_password']);
|
||||
}
|
||||
if ($conn->Error()) $conn->Kill();
|
||||
?>
|
||||
Reference in New Issue
Block a user