forked from Wavyzz/dolibarr
234 lines
7.0 KiB
PHP
234 lines
7.0 KiB
PHP
<?php
|
|
/* Copyright (C) 2008-2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2011-2012 Juanjo Menent <jmenent@2byte.es>
|
|
*
|
|
* 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 3 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, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/admin/agenda_extsites.php
|
|
* \ingroup agenda
|
|
* \brief Page to setup external calendars for agenda module
|
|
*/
|
|
|
|
require '../main.inc.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formadmin.class.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/class/html.formother.class.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/agenda.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
|
|
|
|
if (!$user->admin)
|
|
accessforbidden();
|
|
|
|
$langs->load("agenda");
|
|
$langs->load("admin");
|
|
$langs->load("other");
|
|
|
|
$def = array();
|
|
$actiontest=GETPOST('test','alpha');
|
|
$actionsave=GETPOST('save','alpha');
|
|
|
|
if (empty($conf->global->AGENDA_EXT_NB)) $conf->global->AGENDA_EXT_NB=5;
|
|
$MAXAGENDA=empty($conf->global->AGENDA_EXT_NB)?5:$conf->global->AGENDA_EXT_NB;
|
|
|
|
// List of aviable colors
|
|
$colorlist=array('BECEDD','DDBECE','BFDDBE','F598B4','F68654','CBF654','A4A4A5');
|
|
|
|
/*
|
|
* Actions
|
|
*/
|
|
if ($actionsave)
|
|
{
|
|
$db->begin();
|
|
|
|
$disableext=GETPOST('AGENDA_DISABLE_EXT','alpha');
|
|
$res=dolibarr_set_const($db,'AGENDA_DISABLE_EXT',$disableext,'chaine',0,'',$conf->entity);
|
|
|
|
$i=1; $errorsaved=0;
|
|
$error=0;
|
|
|
|
// Save agendas
|
|
while ($i <= $MAXAGENDA)
|
|
{
|
|
$name=trim(GETPOST('agenda_ext_name'.$i),'alpha');
|
|
$src=trim(GETPOST('agenda_ext_src'.$i,'alpha'));
|
|
$color=trim(GETPOST('agenda_ext_color'.$i,'alpha'));
|
|
if ($color=='-1') $color='';
|
|
|
|
if (! empty($src) && ! preg_match('/^(http\s*|ftp\s*):/', $src))
|
|
{
|
|
setEventMessage($langs->trans("ErrorParamMustBeAnUrl"),'errors');
|
|
$error++;
|
|
$errorsaved++;
|
|
break;
|
|
}
|
|
|
|
//print 'color='.$color;
|
|
$res=dolibarr_set_const($db,'AGENDA_EXT_NAME'.$i,$name,'chaine',0,'',$conf->entity);
|
|
if (! $res > 0) $error++;
|
|
$res=dolibarr_set_const($db,'AGENDA_EXT_SRC'.$i,$src,'chaine',0,'',$conf->entity);
|
|
if (! $res > 0) $error++;
|
|
$res=dolibarr_set_const($db,'AGENDA_EXT_COLOR'.$i,$color,'chaine',0,'',$conf->entity);
|
|
if (! $res > 0) $error++;
|
|
$i++;
|
|
}
|
|
|
|
// Save nb of agenda
|
|
if (! $error)
|
|
{
|
|
$res=dolibarr_set_const($db,'AGENDA_EXT_NB',trim(GETPOST('AGENDA_EXT_NB','alpha')),'chaine',0,'',$conf->entity);
|
|
if (! $res > 0) $error++;
|
|
if (empty($conf->global->AGENDA_EXT_NB)) $conf->global->AGENDA_EXT_NB=5;
|
|
$MAXAGENDA=empty($conf->global->AGENDA_EXT_NB)?5:$conf->global->AGENDA_EXT_NB;
|
|
}
|
|
|
|
if (! $error)
|
|
{
|
|
$db->commit();
|
|
$mesg = "<font class=\"ok\">".$langs->trans("SetupSaved")."</font>";
|
|
}
|
|
else
|
|
{
|
|
$db->rollback();
|
|
if (empty($errorsaved)) $mesg = "<font class=\"error\">".$langs->trans("Error")."</font>";
|
|
}
|
|
}
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
$form=new Form($db);
|
|
$formadmin=new FormAdmin($db);
|
|
$formother=new FormOther($db);
|
|
|
|
$arrayofjs=array();
|
|
$arrayofcss=array();
|
|
|
|
llxHeader('',$langs->trans("AgendaSetup"),'','',0,0,$arrayofjs,$arrayofcss);
|
|
|
|
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
|
|
print_fiche_titre($langs->trans("AgendaSetup"),$linkback,'setup');
|
|
print '<br>';
|
|
|
|
$head=agenda_prepare_head();
|
|
|
|
dol_fiche_head($head, 'extsites', $langs->trans("Agenda"));
|
|
|
|
print $langs->trans("AgendaExtSitesDesc")."<br>\n";
|
|
print "<br>\n";
|
|
|
|
print '<form name="extsitesconfig" action="'.$_SERVER["PHP_SELF"].'" method="post">';
|
|
|
|
$selectedvalue=$conf->global->AGENDA_DISABLE_EXT;
|
|
if ($selectedvalue==1) $selectedvalue=0; else $selectedvalue=1;
|
|
|
|
$var=true;
|
|
print "<table class=\"noborder\" width=\"100%\">";
|
|
|
|
print "<tr class=\"liste_titre\">";
|
|
print '<td>'.$langs->trans("Parameter")."</td>";
|
|
print '<td align="center">'.$langs->trans("Value")."</td>";
|
|
print "</tr>";
|
|
|
|
// Show external agenda
|
|
$var=!$var;
|
|
print "<tr ".$bc[$var].">";
|
|
print "<td>".$langs->trans("ExtSitesEnableThisTool")."</td>";
|
|
print '<td align="center">';
|
|
if ($conf->use_javascript_ajax)
|
|
{
|
|
print ajax_constantonoff('AGENDA_DISABLE_EXT',array('enabled'=>array(0=>'.hideifnotset')),null,1);
|
|
}
|
|
else
|
|
{
|
|
if($conf->global->AGENDA_DISABLE_EXT == 0)
|
|
{
|
|
print '<a href="'.$_SERVER['PHP_SELF'].'?save=1&AGENDA_DISABLE_EXT=1">'.img_picto($langs->trans("Enabled"),'on').'</a>';
|
|
}
|
|
else
|
|
{
|
|
print '<a href="'.$_SERVER['PHP_SELF'].'?save=1&AGENDA_DISABLE_EXT=0">'.img_picto($langs->trans("Disabled"),'off').'</a>';
|
|
}
|
|
}
|
|
print "</td>";
|
|
print "</tr>";
|
|
|
|
// Nb of agenda
|
|
$var=!$var;
|
|
print "<tr ".$bc[$var].">";
|
|
print "<td>".$langs->trans("ExtSitesNbOfAgenda")."</td>";
|
|
print '<td align="center">';
|
|
print '<input class="flat hideifnotset" type="text" size="2" id="AGENDA_EXT_NB" name="AGENDA_EXT_NB" value="'.$conf->global->AGENDA_EXT_NB.'">';
|
|
print "</td>";
|
|
print "</tr>";
|
|
|
|
print "</table>";
|
|
print "<br>";
|
|
|
|
print "<table class=\"noborder\" width=\"100%\">";
|
|
|
|
print "<tr class=\"liste_titre\">";
|
|
print "<td>".$langs->trans("Parameter")."</td>";
|
|
print "<td>".$langs->trans("Name")."</td>";
|
|
print "<td>".$langs->trans("ExtSiteUrlAgenda")." (".$langs->trans("Example").': http://yoursite/agenda/agenda.ics)</td>';
|
|
print '<td align="right">'.$langs->trans("Color").'</td>';
|
|
print "</tr>";
|
|
|
|
$i=1;
|
|
$var=true;
|
|
while ($i <= $MAXAGENDA)
|
|
{
|
|
$key=$i;
|
|
$name='AGENDA_EXT_NAME'.$key;
|
|
$src='AGENDA_EXT_SRC'.$key;
|
|
$color='AGENDA_EXT_COLOR'.$key;
|
|
|
|
$var=!$var;
|
|
print "<tr ".$bc[$var].">";
|
|
// Nb
|
|
print '<td width="180" nowrap="nowrap">'.$langs->trans("AgendaExtNb",$key)."</td>";
|
|
// Name
|
|
print '<td><input type="text" class="flat hideifnotset" name="agenda_ext_name'.$key.'" value="'. (GETPOST('agenda_ext_name'.$key)?GETPOST('agenda_ext_name'.$key):$conf->global->$name) . '" size="28"></td>';
|
|
// URL
|
|
print '<td><input type="url" class="flat hideifnotset" name="agenda_ext_src'.$key.'" value="'. (GETPOST('agenda_ext_src'.$key)?GETPOST('agenda_ext_src'.$key):$conf->global->$src) . '" size="60"></td>';
|
|
// Color (Possible colors are limited by Google)
|
|
print '<td nowrap="nowrap" align="right">';
|
|
//print $formadmin->selectColor($conf->global->$color, "google_agenda_color".$key, $colorlist);
|
|
print $formother->selectColor((GETPOST("agenda_ext_color".$key)?GETPOST("agenda_ext_color".$key):$conf->global->$color), "agenda_ext_color".$key, 'extsitesconfig', 1, '', 'hideifnotset');
|
|
print '</td>';
|
|
print "</tr>";
|
|
$i++;
|
|
}
|
|
|
|
print '</table>';
|
|
print '<br>';
|
|
|
|
print '<center>';
|
|
|
|
print "<input type=\"submit\" name=\"save\" class=\"button\" value=\"".$langs->trans("Save")."\">";
|
|
print "</center>";
|
|
|
|
print "</form>\n";
|
|
|
|
dol_fiche_end();
|
|
|
|
dol_htmloutput_mesg($mesg);
|
|
|
|
|
|
llxFooter();
|
|
|
|
$db->close();
|
|
?>
|