2004-10-19 20:58:50 +02:00
|
|
|
|
<?php
|
2005-06-11 12:49:02 +02:00
|
|
|
|
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
2008-03-02 19:47:42 +01:00
|
|
|
|
* Copyright (C) 2003 Eric Seigne <erics@rycks.com>
|
2008-01-02 16:23:47 +01:00
|
|
|
|
* Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
|
2005-06-11 12:49:02 +02:00
|
|
|
|
* Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
|
|
|
|
|
|
* Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
|
2003-07-22 16:58:41 +02:00
|
|
|
|
*
|
|
|
|
|
|
* 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.
|
|
|
|
|
|
*/
|
2004-06-18 17:40:28 +02:00
|
|
|
|
|
2004-12-25 18:56:40 +01:00
|
|
|
|
/**
|
2004-08-29 14:01:58 +02:00
|
|
|
|
\file htdocs/admin/webcalendar.php
|
2005-09-11 18:29:14 +02:00
|
|
|
|
\ingroup webcalendar
|
2004-08-29 14:01:58 +02:00
|
|
|
|
\brief Page de configuration du module webcalendar
|
2008-02-01 01:09:23 +01:00
|
|
|
|
\version $Id$
|
2004-08-29 14:01:58 +02:00
|
|
|
|
*/
|
|
|
|
|
|
|
2003-07-22 16:58:41 +02:00
|
|
|
|
require("./pre.inc.php");
|
2008-02-01 01:09:23 +01:00
|
|
|
|
require_once(DOL_DOCUMENT_ROOT."/lib/admin.lib.php");
|
2008-01-02 16:23:47 +01:00
|
|
|
|
require_once(DOL_DOCUMENT_ROOT.'/webcal/webcal.class.php');
|
2005-09-11 18:29:14 +02:00
|
|
|
|
|
2003-07-22 16:58:41 +02:00
|
|
|
|
|
2004-02-28 18:18:33 +01:00
|
|
|
|
if (!$user->admin)
|
2004-11-02 22:28:43 +01:00
|
|
|
|
accessforbidden();
|
2004-02-28 18:18:33 +01:00
|
|
|
|
|
2005-09-11 18:29:14 +02:00
|
|
|
|
|
2004-12-25 18:56:40 +01:00
|
|
|
|
$langs->load("admin");
|
|
|
|
|
|
$langs->load("other");
|
2004-02-28 18:18:33 +01:00
|
|
|
|
|
2003-07-22 16:58:41 +02:00
|
|
|
|
$def = array();
|
2004-06-27 01:00:30 +02:00
|
|
|
|
$actiontest=$_POST["test"];
|
2005-07-10 01:31:10 +02:00
|
|
|
|
$actionsave=$_POST["save"];
|
2004-06-27 01:00:30 +02:00
|
|
|
|
|
2006-12-01 05:22:40 +01:00
|
|
|
|
// Sauvegardes parametres
|
|
|
|
|
|
if ($actionsave)
|
2003-07-22 16:58:41 +02:00
|
|
|
|
{
|
2005-09-11 18:29:14 +02:00
|
|
|
|
$i=0;
|
|
|
|
|
|
|
|
|
|
|
|
$db->begin();
|
|
|
|
|
|
|
2006-08-04 03:44:29 +02:00
|
|
|
|
$i+=dolibarr_set_const($db,'PHPWEBCALENDAR_URL',trim($_POST["phpwebcalendar_url"]),'chaine',0);
|
|
|
|
|
|
$i+=dolibarr_set_const($db,'PHPWEBCALENDAR_HOST',trim($_POST["phpwebcalendar_host"]),'chaine',0);
|
|
|
|
|
|
$i+=dolibarr_set_const($db,'PHPWEBCALENDAR_DBNAME',trim($_POST["phpwebcalendar_dbname"]),'chaine',0);
|
|
|
|
|
|
$i+=dolibarr_set_const($db,'PHPWEBCALENDAR_USER',trim($_POST["phpwebcalendar_user"]),'chaine',0);
|
|
|
|
|
|
$i+=dolibarr_set_const($db,'PHPWEBCALENDAR_PASS',trim($_POST["phpwebcalendar_pass"]),'chaine',0);
|
2008-04-09 19:17:11 +02:00
|
|
|
|
$i+=dolibarr_set_const($db,'PHPWEBCALENDAR_PASSWORD_VCALEXPORT',trim($_POST["PHPWEBCALENDAR_PASSWORD_VCALEXPORT"]),'chaine',0);
|
2005-09-11 18:29:14 +02:00
|
|
|
|
|
2006-08-04 03:44:29 +02:00
|
|
|
|
$i+=dolibarr_set_const($db,'PHPWEBCALENDAR_SYNCRO',trim($_POST["phpwebcalendar_syncro"]),'chaine',0);
|
|
|
|
|
|
$i+=dolibarr_set_const($db,'PHPWEBCALENDAR_COMPANYCREATE',trim($_POST["phpwebcalendar_companycreate"]),'chaine',0);
|
2006-08-05 19:24:44 +02:00
|
|
|
|
$i+=dolibarr_set_const($db,'PHPWEBCALENDAR_PROPALSTATUS',trim($_POST["phpwebcalendar_propalstatus"]),'chaine',0);
|
2006-08-04 03:44:29 +02:00
|
|
|
|
$i+=dolibarr_set_const($db,'PHPWEBCALENDAR_CONTRACTSTATUS',trim($_POST["phpwebcalendar_contractstatus"]),'chaine',0);
|
|
|
|
|
|
$i+=dolibarr_set_const($db,'PHPWEBCALENDAR_BILLSTATUS',trim($_POST["phpwebcalendar_billstatus"]),'chaine',0);
|
2007-02-11 17:32:29 +01:00
|
|
|
|
$i+=dolibarr_set_const($db,'PHPWEBCALENDAR_MEMBERSTATUS',trim($_POST["phpwebcalendar_memberstatus"]),'chaine',0);
|
2005-09-11 18:29:14 +02:00
|
|
|
|
|
|
|
|
|
|
if ($i >= 9)
|
|
|
|
|
|
{
|
|
|
|
|
|
$db->commit();
|
2006-08-04 03:44:29 +02:00
|
|
|
|
$mesg = "<font class=\"ok\">".$langs->trans("WebCalSetupSaved")."</font>";
|
2005-09-11 18:29:14 +02:00
|
|
|
|
}
|
|
|
|
|
|
else
|
2004-06-27 01:00:30 +02:00
|
|
|
|
{
|
2005-09-11 18:29:14 +02:00
|
|
|
|
$db->rollback();
|
2006-08-04 03:44:29 +02:00
|
|
|
|
header("Location: ".$_SERVER["PHP_SELF"]);
|
|
|
|
|
|
exit;
|
2004-06-27 01:00:30 +02:00
|
|
|
|
}
|
2003-07-22 16:58:41 +02:00
|
|
|
|
}
|
2005-09-11 18:29:14 +02:00
|
|
|
|
elseif ($actiontest)
|
2005-07-10 01:31:10 +02:00
|
|
|
|
{
|
2005-09-11 18:29:14 +02:00
|
|
|
|
//$resql=$db->query("select count(*) from llx_const");
|
|
|
|
|
|
//print "< ".$db." - ".$db->db." - ".$resql." - ".$db->error()."><br>\n";
|
2004-11-02 22:28:43 +01:00
|
|
|
|
|
2007-09-09 12:40:17 +02:00
|
|
|
|
// Test de la connexion a la database webcalendar
|
2005-09-11 18:29:14 +02:00
|
|
|
|
$conf->webcal->db->type=$dolibarr_main_db_type;
|
|
|
|
|
|
$conf->webcal->db->host=$_POST["phpwebcalendar_host"];
|
2008-03-10 23:38:43 +01:00
|
|
|
|
$conf->webcal->db->port=$_POST["phpwebcalendar_port"];
|
2005-09-11 18:29:14 +02:00
|
|
|
|
$conf->webcal->db->user=$_POST["phpwebcalendar_user"];
|
|
|
|
|
|
$conf->webcal->db->pass=$_POST["phpwebcalendar_pass"];
|
|
|
|
|
|
$conf->webcal->db->name=$_POST["phpwebcalendar_dbname"];
|
2004-02-28 18:18:33 +01:00
|
|
|
|
|
2005-09-11 18:29:14 +02:00
|
|
|
|
$webcal=new WebCal();
|
2003-07-22 16:58:41 +02:00
|
|
|
|
|
2005-09-11 18:29:14 +02:00
|
|
|
|
//print "D ".$db." - ".$db->db."<br>\n";
|
|
|
|
|
|
//print "W ".$webcal->localdb." - ".$webcal->localdb->db."<br>\n";
|
|
|
|
|
|
|
|
|
|
|
|
if ($webcal->localdb->connected == 1 && $webcal->localdb->database_selected == 1)
|
2004-11-02 22:28:43 +01:00
|
|
|
|
{
|
2008-02-01 01:09:23 +01:00
|
|
|
|
// V<>rifie si bonne base
|
2005-07-10 01:31:10 +02:00
|
|
|
|
$sql="SELECT cal_value FROM webcal_config WHERE cal_setting='application_name'";
|
2005-09-11 18:29:14 +02:00
|
|
|
|
$resql=$webcal->localdb->query($sql);
|
2005-07-10 01:31:10 +02:00
|
|
|
|
if ($resql) {
|
2007-05-10 01:50:10 +02:00
|
|
|
|
# Search version
|
|
|
|
|
|
$webcal->version='';
|
|
|
|
|
|
$sql="SELECT cal_value FROM webcal_config WHERE cal_setting='WEBCAL_PROGRAM_VERSION'";
|
|
|
|
|
|
$resql=$webcal->localdb->query($sql);
|
|
|
|
|
|
if ($resql) {
|
|
|
|
|
|
$obj=$webcal->localdb->fetch_object($resql);
|
|
|
|
|
|
if ($obj)
|
|
|
|
|
|
{
|
|
|
|
|
|
$webcal->version=$obj->cal_value;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$mesg ="<div class=\"ok\">";
|
2006-12-01 05:22:40 +01:00
|
|
|
|
$mesg.=$langs->trans("WebCalTestOk",$_POST["phpwebcalendar_host"],$_POST["phpwebcalendar_dbname"],$_POST["phpwebcalendar_user"]);
|
2007-05-10 01:50:10 +02:00
|
|
|
|
$mesg.='<br>'.$langs->trans("DetectedVersion").': '.($webcal->version?$webcal->version:$langs->trans("NotAvailable"));
|
2005-07-10 01:31:10 +02:00
|
|
|
|
$mesg.="</div>";
|
|
|
|
|
|
}
|
|
|
|
|
|
else {
|
2006-12-01 05:22:40 +01:00
|
|
|
|
$mesg ="<div class=\"error\">";
|
|
|
|
|
|
$mesg.=$langs->trans("WebCalErrorConnectOkButWrongDatabase");
|
2005-07-10 01:31:10 +02:00
|
|
|
|
$mesg.="</div>";
|
|
|
|
|
|
}
|
2007-05-10 01:50:10 +02:00
|
|
|
|
// Ne pas fermer car la conn de webcal est la meme que dolibarr si
|
|
|
|
|
|
// parametre host/user/pass identique.
|
|
|
|
|
|
//$webcal->localdb->close();
|
2004-11-02 22:28:43 +01:00
|
|
|
|
}
|
2008-01-02 23:11:50 +01:00
|
|
|
|
elseif ($webcal->localdb->connected == 1 && $webcal->localdb->database_selected != 1)
|
2004-06-27 01:00:30 +02:00
|
|
|
|
{
|
2005-09-11 18:29:14 +02:00
|
|
|
|
$mesg ="<div class=\"error\">".$langs->trans("WebCalTestKo1",$_POST["phpwebcalendar_host"],$_POST["phpwebcalendar_dbname"]);
|
|
|
|
|
|
$mesg.="<br>".$webcal->localdb->error();
|
2005-07-10 01:31:10 +02:00
|
|
|
|
$mesg.="</div>";
|
2005-09-11 18:29:14 +02:00
|
|
|
|
//$webcal->localdb->close(); Ne pas fermer car la conn de webcal est la meme que dolibarr si parametre host/user/pass identique
|
2004-06-27 01:00:30 +02:00
|
|
|
|
}
|
|
|
|
|
|
else
|
2004-11-02 22:28:43 +01:00
|
|
|
|
{
|
2005-09-11 18:29:14 +02:00
|
|
|
|
$mesg ="<div class=\"error\">".$langs->trans("WebCalTestKo2",$_POST["phpwebcalendar_host"],$_POST["phpwebcalendar_user"]);
|
|
|
|
|
|
$mesg.="<br>".$webcal->localdb->error();
|
2005-07-10 01:31:10 +02:00
|
|
|
|
$mesg.="</div>";
|
2004-11-02 22:28:43 +01:00
|
|
|
|
}
|
2005-07-10 01:31:10 +02:00
|
|
|
|
|
2005-09-11 18:29:14 +02:00
|
|
|
|
//$resql=$db->query("select count(*) from llx_const");
|
|
|
|
|
|
//print "< ".$db." - ".$db->db." - ".$resql." - ".$db->error()."><br>\n";
|
2004-06-27 01:00:30 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2005-09-11 18:29:14 +02:00
|
|
|
|
/**
|
|
|
|
|
|
* Affichage du formulaire de saisie
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
llxHeader();
|
|
|
|
|
|
|
2008-01-26 16:10:18 +01:00
|
|
|
|
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
|
|
|
|
|
|
print_fiche_titre($langs->trans("WebCalSetup"),$linkback,'setup');
|
2005-09-11 18:29:14 +02:00
|
|
|
|
print '<br>';
|
|
|
|
|
|
|
|
|
|
|
|
|
2006-08-04 03:44:29 +02:00
|
|
|
|
print '<form name="phpwebcalendarconfig" action="'.$_SERVER["PHP_SELF"].'" method="post">';
|
2005-09-11 18:29:14 +02:00
|
|
|
|
print "<table class=\"noborder\" width=\"100%\">";
|
2006-12-01 05:22:40 +01:00
|
|
|
|
|
2005-09-11 18:29:14 +02:00
|
|
|
|
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>";
|
2006-12-01 05:22:40 +01:00
|
|
|
|
|
2005-09-11 18:29:14 +02:00
|
|
|
|
print "<tr class=\"impair\">";
|
|
|
|
|
|
print "<td>".$langs->trans("WebCalURL")."</td>";
|
|
|
|
|
|
print "<td><input type=\"text\" class=\"flat\" name=\"phpwebcalendar_url\" value=\"". ($_POST["phpwebcalendar_url"]?$_POST["phpwebcalendar_url"]:$conf->global->PHPWEBCALENDAR_URL) . "\" size=\"40\"></td>";
|
|
|
|
|
|
print "<td>http://localhost/webcalendar/";
|
|
|
|
|
|
print "<br>https://webcalendarserver/";
|
|
|
|
|
|
print "</td>";
|
|
|
|
|
|
print "</tr>";
|
2006-12-01 05:22:40 +01:00
|
|
|
|
|
2005-09-11 18:29:14 +02:00
|
|
|
|
print "<tr class=\"pair\">";
|
|
|
|
|
|
print "<td>".$langs->trans("WebCalServer")."</td>";
|
|
|
|
|
|
print "<td><input type=\"text\" class=\"flat\" name=\"phpwebcalendar_host\" value=\"". ($_POST["phpwebcalendar_host"]?$_POST["phpwebcalendar_host"]:$conf->global->PHPWEBCALENDAR_HOST) . "\" size=\"30\"></td>";
|
|
|
|
|
|
print "<td>localhost";
|
|
|
|
|
|
//print "<br>__dolibarr_main_db_host__ <i>(".$dolibarr_main_db_host.")</i>"
|
|
|
|
|
|
print "</td>";
|
|
|
|
|
|
print "</tr>";
|
2006-12-01 05:22:40 +01:00
|
|
|
|
|
2005-09-11 18:29:14 +02:00
|
|
|
|
print "<tr class=\"impair\">";
|
|
|
|
|
|
print "<td>".$langs->trans("WebCalDatabaseName")."</td>";
|
|
|
|
|
|
print "<td><input type=\"text\" class=\"flat\" name=\"phpwebcalendar_dbname\" value=\"". ($_POST["phpwebcalendar_dbname"]?$_POST["phpwebcalendar_dbname"]:$conf->global->PHPWEBCALENDAR_DBNAME) . "\" size=\"30\"></td>";
|
|
|
|
|
|
print "<td>webcalendar";
|
|
|
|
|
|
//print "<br>__dolibarr_main_db_name__ <i>(".$dolibarr_main_db_name.")</i>";
|
|
|
|
|
|
print "</td>";
|
|
|
|
|
|
print "</tr>";
|
2006-12-01 05:22:40 +01:00
|
|
|
|
|
2005-09-11 18:29:14 +02:00
|
|
|
|
print "<tr class=\"pair\">";
|
|
|
|
|
|
print "<td>".$langs->trans("WebCalUser")."</td>";
|
|
|
|
|
|
print "<td><input type=\"text\" class=\"flat\" name=\"phpwebcalendar_user\" value=\"". ($_POST["phpwebcalendar_user"]?$_POST["phpwebcalendar_user"]:$conf->global->PHPWEBCALENDAR_USER) . "\" size=\"30\"></td>";
|
|
|
|
|
|
print "<td>webcaluser";
|
|
|
|
|
|
//print "<br>__dolibarr_main_db_user__ <i>(".$dolibarr_main_db_user.")</i>";
|
|
|
|
|
|
print "</td>";
|
|
|
|
|
|
print "</tr>";
|
2006-12-01 05:22:40 +01:00
|
|
|
|
|
2005-09-11 18:29:14 +02:00
|
|
|
|
print "<tr class=\"impair\">";
|
|
|
|
|
|
print "<td>".$langs->trans("Password")."</td>";
|
2005-10-03 03:36:21 +02:00
|
|
|
|
print "<td><input type=\"password\" class=\"flat\" name=\"phpwebcalendar_pass\" value=\"" . ($_POST["phpwebcalendar_pass"]?$_POST["phpwebcalendar_pass"]:$conf->global->PHPWEBCALENDAR_PASS) . "\" size=\"30\"></td>";
|
2005-09-11 18:29:14 +02:00
|
|
|
|
print '<td>';
|
|
|
|
|
|
//if ($dolibarr_main_db_pass) print '__dolibarr_main_db_pass__ <i>('.eregi_replace('.','*',$dolibarr_main_db_pass).')</i>';
|
|
|
|
|
|
print ' </td>';
|
|
|
|
|
|
print "</tr>";
|
2006-12-01 05:22:40 +01:00
|
|
|
|
|
2008-04-09 19:17:11 +02:00
|
|
|
|
print "<tr class=\"pair\">";
|
2008-03-02 19:47:42 +01:00
|
|
|
|
print "<td>".$langs->trans("PasswordTogetVCalExport")."</td>";
|
|
|
|
|
|
print "<td><input type=\"text\" class=\"flat\" name=\"PHPWEBCALENDAR_PASSWORD_VCALEXPORT\" value=\"". ($_POST["PHPWEBCALENDAR_PASSWORD_VCALEXPORT"]?$_POST["PHPWEBCALENDAR_PASSWORD_VCALEXPORT"]:$conf->global->PHPWEBCALENDAR_PASSWORD_VCALEXPORT) . "\" size=\"40\"></td>";
|
|
|
|
|
|
print "<td> </td>";
|
|
|
|
|
|
print "</tr>";
|
|
|
|
|
|
|
2005-09-11 18:29:14 +02:00
|
|
|
|
print "</table>";
|
|
|
|
|
|
print "<br>";
|
|
|
|
|
|
|
|
|
|
|
|
$var=true;
|
|
|
|
|
|
print "<table class=\"noborder\" width=\"100%\">";
|
|
|
|
|
|
print "<tr class=\"liste_titre\">";
|
2008-03-02 19:47:42 +01:00
|
|
|
|
print "<td colspan=\"3\">".$langs->trans("WebCalSyncro")."</td>";
|
2005-09-11 18:29:14 +02:00
|
|
|
|
print "</tr>";
|
2008-03-02 19:47:42 +01:00
|
|
|
|
if ($conf->agenda->enabled)
|
2005-09-11 18:29:14 +02:00
|
|
|
|
{
|
|
|
|
|
|
$var=!$var;
|
|
|
|
|
|
print '<tr '.$bc[$var].'>';
|
|
|
|
|
|
print '<td>'.$langs->trans("WebCalAddEventOnCreateActions").'</td>';
|
|
|
|
|
|
print '<td>';
|
|
|
|
|
|
print '<select name="phpwebcalendar_syncro" class="flat">';
|
2005-09-20 22:33:26 +02:00
|
|
|
|
print '<option value="always"'.($conf->global->PHPWEBCALENDAR_SYNCRO=='always'?' selected="true"':'').'>'.$langs->trans("WebCalAllways").'</option>';
|
|
|
|
|
|
print '<option value="yesbydefault"'.($conf->global->PHPWEBCALENDAR_SYNCRO=='yesbydefault'?' selected="true"':'').'>'.$langs->trans("WebCalYesByDefault").'</option>';
|
|
|
|
|
|
print '<option value="nobydefault"'.((! $conf->global->PHPWEBCALENDAR_SYNCRO || $conf->global->PHPWEBCALENDAR_SYNCRO=='nobydefault')?' selected="true"':'').'>'.$langs->trans("WebCalNoByDefault").'</option>';
|
|
|
|
|
|
print '<option value="never"'.($conf->global->PHPWEBCALENDAR_SYNCRO=='never'?' selected="true"':'').'>'.$langs->trans("WebCalNever").'</option>';
|
2005-09-11 18:29:14 +02:00
|
|
|
|
print '</select>';
|
|
|
|
|
|
print '</td></tr>';
|
|
|
|
|
|
}
|
|
|
|
|
|
if ($conf->societe->enabled)
|
|
|
|
|
|
{
|
|
|
|
|
|
$var=!$var;
|
|
|
|
|
|
print '<tr '.$bc[$var].'>';
|
|
|
|
|
|
print '<td>'.$langs->trans("WebCalAddEventOnCreateCompany").'</td>';
|
|
|
|
|
|
print '<td>';
|
|
|
|
|
|
print '<select name="phpwebcalendar_companycreate" class="flat">';
|
2005-09-20 22:33:26 +02:00
|
|
|
|
print '<option value="always"'.($conf->global->PHPWEBCALENDAR_COMPANYCREATE=='always'?' selected="true"':'').'>'.$langs->trans("WebCalAllways").'</option>';
|
|
|
|
|
|
print '<option value="never"'.(! $conf->global->PHPWEBCALENDAR_COMPANYCREATE || $conf->global->PHPWEBCALENDAR_COMPANYCREATE=='never'?' selected="true"':'').'>'.$langs->trans("WebCalNever").'</option>';
|
2005-09-11 18:29:14 +02:00
|
|
|
|
print '</select>';
|
|
|
|
|
|
print '</td></tr>';
|
|
|
|
|
|
}
|
2006-08-05 19:24:44 +02:00
|
|
|
|
if ($conf->propal->enabled)
|
|
|
|
|
|
{
|
|
|
|
|
|
$var=!$var;
|
|
|
|
|
|
print '<tr '.$bc[$var].'>';
|
|
|
|
|
|
print '<td>'.$langs->trans("WebCalAddEventOnStatusPropal").'</td>';
|
|
|
|
|
|
print '<td>';
|
|
|
|
|
|
print '<select name="phpwebcalendar_propalstatus" class="flat">';
|
|
|
|
|
|
print '<option value="always"'.($conf->global->PHPWEBCALENDAR_PROPALSTATUS=='always'?' selected="true"':'').'>'.$langs->trans("WebCalAllways").'</option>';
|
|
|
|
|
|
print '<option value="never"'.(! $conf->global->PHPWEBCALENDAR_PROPALSTATUS || $conf->global->PHPWEBCALENDAR_PROPALSTATUS=='never'?' selected="true"':'').'>'.$langs->trans("WebCalNever").'</option>';
|
|
|
|
|
|
print '</select>';
|
|
|
|
|
|
print '</td></tr>';
|
|
|
|
|
|
}
|
2005-09-11 18:29:14 +02:00
|
|
|
|
if ($conf->contrat->enabled)
|
|
|
|
|
|
{
|
|
|
|
|
|
$var=!$var;
|
|
|
|
|
|
print '<tr '.$bc[$var].'>';
|
|
|
|
|
|
print '<td>'.$langs->trans("WebCalAddEventOnStatusContract").'</td>';
|
|
|
|
|
|
print '<td>';
|
|
|
|
|
|
print '<select name="phpwebcalendar_contractstatus" class="flat">';
|
2005-09-20 22:33:26 +02:00
|
|
|
|
print '<option value="always"'.($conf->global->PHPWEBCALENDAR_CONTRACTSTATUS=='always'?' selected="true"':'').'>'.$langs->trans("WebCalAllways").'</option>';
|
|
|
|
|
|
print '<option value="never"'.(! $conf->global->PHPWEBCALENDAR_CONTRACTSTATUS || $conf->global->PHPWEBCALENDAR_CONTRACTSTATUS=='never'?' selected="true"':'').'>'.$langs->trans("WebCalNever").'</option>';
|
2005-09-11 18:29:14 +02:00
|
|
|
|
print '</select>';
|
|
|
|
|
|
print '</td></tr>';
|
|
|
|
|
|
}
|
|
|
|
|
|
if ($conf->facture->enabled)
|
|
|
|
|
|
{
|
|
|
|
|
|
$var=!$var;
|
|
|
|
|
|
print '<tr '.$bc[$var].'>';
|
|
|
|
|
|
print '<td>'.$langs->trans("WebCalAddEventOnStatusBill").'</td>';
|
|
|
|
|
|
print '<td>';
|
|
|
|
|
|
print '<select name="phpwebcalendar_billstatus" class="flat">';
|
2005-09-20 22:33:26 +02:00
|
|
|
|
print '<option value="always"'.($conf->global->PHPWEBCALENDAR_BILLSTATUS=='always'?' selected="true"':'').'>'.$langs->trans("WebCalAllways").'</option>';
|
|
|
|
|
|
print '<option value="never"'.(! $conf->global->PHPWEBCALENDAR_BILLSTATUS || $conf->global->PHPWEBCALENDAR_BILLSTATUS=='never'?' selected="true"':'').'>'.$langs->trans("WebCalNever").'</option>';
|
2005-09-11 18:29:14 +02:00
|
|
|
|
print '</select>';
|
|
|
|
|
|
print '</td></tr>';
|
|
|
|
|
|
}
|
2007-02-11 17:32:29 +01:00
|
|
|
|
if ($conf->adherent->enabled)
|
|
|
|
|
|
{
|
|
|
|
|
|
$var=!$var;
|
|
|
|
|
|
print '<tr '.$bc[$var].'>';
|
|
|
|
|
|
print '<td>'.$langs->trans("WebCalAddEventOnStatusMember").'</td>';
|
|
|
|
|
|
print '<td>';
|
|
|
|
|
|
print '<select name="phpwebcalendar_memberstatus" class="flat">';
|
|
|
|
|
|
print '<option value="always"'.($conf->global->PHPWEBCALENDAR_MEMBERSTATUS=='always'?' selected="true"':'').'>'.$langs->trans("WebCalAllways").'</option>';
|
|
|
|
|
|
print '<option value="never"'.(! $conf->global->PHPWEBCALENDAR_MEMBERSTATUS || $conf->global->PHPWEBCALENDAR_MEMBERSTATUS=='never'?' selected="true"':'').'>'.$langs->trans("WebCalNever").'</option>';
|
|
|
|
|
|
print '</select>';
|
|
|
|
|
|
print '</td></tr>';
|
|
|
|
|
|
}
|
2006-08-05 19:24:44 +02:00
|
|
|
|
print '</table>';
|
2006-08-04 03:44:29 +02:00
|
|
|
|
|
|
|
|
|
|
|
2005-09-11 18:29:14 +02:00
|
|
|
|
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>";
|
|
|
|
|
|
|
2008-01-02 23:11:50 +01:00
|
|
|
|
// Show message
|
|
|
|
|
|
$message='';
|
2008-01-03 00:39:29 +01:00
|
|
|
|
$urlwithouturlroot=eregi_replace(DOL_URL_ROOT.'$','',$dolibarr_main_url_root);
|
2008-04-09 19:17:11 +02:00
|
|
|
|
$urlvcal='<a href="'.DOL_URL_ROOT.'/webcal/webcalexport.php?format=vcal&exportkey='.$conf->global->PHPWEBCALENDAR_PASSWORD_VCALEXPORT.'" target="_blank">'.$urlwithouturlroot.DOL_URL_ROOT.'/webcal/webcalexport.php?format=vcal&exportkey='.$conf->global->PHPWEBCALENDAR_PASSWORD_VCALEXPORT.'</a>';
|
2008-01-02 23:11:50 +01:00
|
|
|
|
$message.=$langs->trans("WebCalUrlForVCalExport",'vcal',$urlvcal);
|
|
|
|
|
|
$message.='<br>';
|
2008-04-09 19:17:11 +02:00
|
|
|
|
$urlical='<a href="'.DOL_URL_ROOT.'/webcal/webcalexport.php?format=ical&type=event&exportkey='.$conf->global->PHPWEBCALENDAR_PASSWORD_VCALEXPORT.'" target="_blank">'.$urlwithouturlroot.DOL_URL_ROOT.'/webcal/webcalexport.php?format=ical&type=event&exportkey='.$conf->global->PHPWEBCALENDAR_PASSWORD_VCALEXPORT.'</a>';
|
2008-01-02 23:11:50 +01:00
|
|
|
|
$message.=$langs->trans("WebCalUrlForVCalExport",'ical',$urlical);
|
|
|
|
|
|
print info_admin($message);
|
|
|
|
|
|
|
2005-09-11 18:29:14 +02:00
|
|
|
|
$db->close();
|
|
|
|
|
|
|
2005-06-11 12:49:02 +02:00
|
|
|
|
llxFooter('$Date$ - $Revision$');
|
2003-07-22 16:58:41 +02:00
|
|
|
|
?>
|