mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-06 17:48:25 +01:00
207 lines
7.3 KiB
PHP
207 lines
7.3 KiB
PHP
<?php
|
|
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2003 Éric Seigne <erics@rycks.com>
|
|
* Copyright (C) 2004-2005 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
|
|
* Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
|
|
*
|
|
* 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.
|
|
*
|
|
* This program 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 this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* $Id$
|
|
* $Source$
|
|
*/
|
|
|
|
/**
|
|
\file htdocs/admin/mantis.php
|
|
\ingroup mantis
|
|
\brief Page de configuration du module mantis
|
|
\version $Revision$
|
|
*/
|
|
|
|
require("./pre.inc.php");
|
|
require_once(DOL_DOCUMENT_ROOT.'/lib/mantis.class.php');
|
|
|
|
|
|
if (!$user->admin)
|
|
accessforbidden();
|
|
|
|
|
|
$langs->load("admin");
|
|
$langs->load("other");
|
|
|
|
$def = array();
|
|
$actiontest=$_POST["test"];
|
|
$actionsave=$_POST["save"];
|
|
|
|
// Sauvegardes parametres
|
|
if ($actionsave)
|
|
{
|
|
$i=0;
|
|
|
|
$db->begin();
|
|
|
|
$i+=dolibarr_set_const($db,'PHPMANTIS_URL',trim($_POST["phpmantis_url"]),'chaine',0);
|
|
$i+=dolibarr_set_const($db,'PHPMANTIS_HOST',trim($_POST["phpmantis_host"]),'chaine',0);
|
|
$i+=dolibarr_set_const($db,'PHPMANTIS_DBNAME',trim($_POST["phpmantis_dbname"]),'chaine',0);
|
|
$i+=dolibarr_set_const($db,'PHPMANTIS_USER',trim($_POST["phpmantis_user"]),'chaine',0);
|
|
$i+=dolibarr_set_const($db,'PHPMANTIS_PASS',trim($_POST["phpmantis_pass"]),'chaine',0);
|
|
|
|
if ($i >= 5)
|
|
{
|
|
$db->commit();
|
|
$mesg = "<font class=\"ok\">".$langs->trans("MantisSetupSaved")."</font>";
|
|
}
|
|
else
|
|
{
|
|
$db->rollback();
|
|
header("Location: ".$_SERVER["PHP_SELF"]);
|
|
exit;
|
|
}
|
|
}
|
|
elseif ($actiontest)
|
|
{
|
|
//$resql=$db->query("select count(*) from llx_const");
|
|
//print "< ".$db." - ".$db->db." - ".$resql." - ".$db->error()."><br>\n";
|
|
|
|
// Test de la connection a la database mantis
|
|
$conf->mantis->db->type=$dolibarr_main_db_type;
|
|
$conf->mantis->db->host=$_POST["phpmantis_host"];
|
|
$conf->mantis->db->user=$_POST["phpmantis_user"];
|
|
$conf->mantis->db->pass=$_POST["phpmantis_pass"];
|
|
$conf->mantis->db->name=$_POST["phpmantis_dbname"];
|
|
|
|
$mantis=new Mantis();
|
|
|
|
//print "D ".$db." - ".$db->db."<br>\n";
|
|
//print "W ".$mantis->localdb." - ".$mantis->localdb->db."<br>\n";
|
|
|
|
if ($mantis->localdb->connected == 1 && $mantis->localdb->database_selected == 1)
|
|
{
|
|
// Vérifie si bonne base
|
|
$sql="SELECT value FROM mantis_config_table WHERE config_id='database_version'";
|
|
$resql=$mantis->localdb->query($sql);
|
|
if ($resql) {
|
|
$mesg ="<div class=\"ok\">";
|
|
$mesg.=$langs->trans("MantisTestOk",$_POST["phpmantis_host"],$_POST["phpmantis_dbname"],$_POST["phpmantis_user"]);
|
|
$mesg.="</div>";
|
|
}
|
|
else {
|
|
$mesg ="<div class=\"error\">";
|
|
$mesg.=$langs->trans("MantisErrorConnectOkButWrongDatabase");
|
|
$mesg.="</div>";
|
|
}
|
|
|
|
//$mantis->localdb->close(); Ne pas fermer car la conn de mantis est la meme que dolibarr si parametre host/user/pass identique
|
|
}
|
|
elseif ($mantis->connected == 1 && $mantis->database_selected != 1)
|
|
{
|
|
$mesg ="<div class=\"error\">".$langs->trans("MantisTestKo1",$_POST["phpmantis_host"],$_POST["phpmantis_dbname"]);
|
|
$mesg.="<br>".$mantis->localdb->error();
|
|
$mesg.="</div>";
|
|
//$mantis->localdb->close(); Ne pas fermer car la conn de mantis est la meme que dolibarr si parametre host/user/pass identique
|
|
}
|
|
else
|
|
{
|
|
$mesg ="<div class=\"error\">".$langs->trans("MantisTestKo2",$_POST["phpmantis_host"],$_POST["phpmantis_user"]);
|
|
$mesg.="<br>".$mantis->localdb->error();
|
|
$mesg.="</div>";
|
|
}
|
|
|
|
//$resql=$db->query("select count(*) from llx_const");
|
|
//print "< ".$db." - ".$db->db." - ".$resql." - ".$db->error()."><br>\n";
|
|
}
|
|
|
|
|
|
/**
|
|
* Affichage du formulaire de saisie
|
|
*/
|
|
|
|
llxHeader();
|
|
|
|
print_fiche_titre($langs->trans("MantisSetup"),'','setup');
|
|
print '<br>';
|
|
|
|
|
|
print '<form name="phpmantisconfig" action="'.$_SERVER["PHP_SELF"].'" method="post">';
|
|
print "<table class=\"noborder\" width=\"100%\">";
|
|
|
|
print "<tr class=\"liste_titre\">";
|
|
print "<td width=\"30%\">".$langs->trans("Parameter")."</td>";
|
|
print "<td>".$langs->trans("Value")."</td>";
|
|
print "<td>".$langs->trans("Examples")."</td>";
|
|
print "</tr>";
|
|
|
|
print "<tr class=\"impair\">";
|
|
print "<td>".$langs->trans("MantisURL")."</td>";
|
|
print "<td><input type=\"text\" class=\"flat\" name=\"phpmantis_url\" value=\"". ($_POST["phpmantis_url"]?$_POST["phpmantis_url"]:$conf->global->PHPMANTIS_URL) . "\" size=\"40\"></td>";
|
|
print "<td>http://localhost/mantis/";
|
|
print "<br>https://mantisserver/";
|
|
print "</td>";
|
|
print "</tr>";
|
|
|
|
print "<tr class=\"pair\">";
|
|
print "<td>".$langs->trans("MantisServer")."</td>";
|
|
print "<td><input type=\"text\" class=\"flat\" name=\"phpmantis_host\" value=\"". ($_POST["phpmantis_host"]?$_POST["phpmantis_host"]:$conf->global->PHPMANTIS_HOST) . "\" size=\"30\"></td>";
|
|
print "<td>localhost";
|
|
//print "<br>__dolibarr_main_db_host__ <i>(".$dolibarr_main_db_host.")</i>"
|
|
print "</td>";
|
|
print "</tr>";
|
|
|
|
print "<tr class=\"impair\">";
|
|
print "<td>".$langs->trans("MantisDatabaseName")."</td>";
|
|
print "<td><input type=\"text\" class=\"flat\" name=\"phpmantis_dbname\" value=\"". ($_POST["phpmantis_dbname"]?$_POST["phpmantis_dbname"]:$conf->global->PHPMANTIS_DBNAME) . "\" size=\"30\"></td>";
|
|
print "<td>bugtracker";
|
|
//print "<br>__dolibarr_main_db_name__ <i>(".$dolibarr_main_db_name.")</i>";
|
|
print "</td>";
|
|
print "</tr>";
|
|
|
|
print "<tr class=\"pair\">";
|
|
print "<td>".$langs->trans("MantisUser")."</td>";
|
|
print "<td><input type=\"text\" class=\"flat\" name=\"phpmantis_user\" value=\"". ($_POST["phpmantis_user"]?$_POST["phpmantis_user"]:$conf->global->PHPMANTIS_USER) . "\" size=\"30\"></td>";
|
|
print "<td>mantis";
|
|
//print "<br>__dolibarr_main_db_user__ <i>(".$dolibarr_main_db_user.")</i>";
|
|
print "</td>";
|
|
print "</tr>";
|
|
|
|
print "<tr class=\"impair\">";
|
|
print "<td>".$langs->trans("Password")."</td>";
|
|
print "<td><input type=\"password\" class=\"flat\" name=\"phpmantis_pass\" value=\"" . ($_POST["phpmantis_pass"]?$_POST["phpmantis_pass"]:$conf->global->PHPMANTIS_PASS) . "\" size=\"30\"></td>";
|
|
print '<td>';
|
|
//if ($dolibarr_main_db_pass) print '__dolibarr_main_db_pass__ <i>('.eregi_replace('.','*',$dolibarr_main_db_pass).')</i>';
|
|
print ' </td>';
|
|
print "</tr>";
|
|
|
|
print "</table>";
|
|
|
|
|
|
print '<br><center>';
|
|
print "<input type=\"submit\" name=\"test\" class=\"button\" value=\"".$langs->trans("TestConnection")."\">";
|
|
print " ";
|
|
print "<input type=\"submit\" name=\"save\" class=\"button\" value=\"".$langs->trans("Save")."\">";
|
|
print "</center>";
|
|
|
|
print "</form>\n";
|
|
|
|
|
|
clearstatcache();
|
|
|
|
if ($mesg) print "<br>$mesg<br>";
|
|
print "<br>";
|
|
|
|
$db->close();
|
|
|
|
llxFooter('$Date$ - $Revision$');
|
|
?>
|