* Copyright (C) 2005-2010 Laurent Destailleur * * 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. */ /** * \file htdocs/admin/clicktodial.php * \ingroup clicktodial * \brief Page d'administration/configuration du module clicktodial * \version $Id$ */ require("../main.inc.php"); require_once(DOL_DOCUMENT_ROOT."/lib/admin.lib.php"); $langs->load("admin"); if (!$user->admin) accessforbidden(); if ($_POST["action"] == 'setvalue' && $user->admin) { $result=dolibarr_set_const($db, "CLICKTODIAL_URL",$_POST["url"],'chaine',0,'',$conf->entity); if ($result >= 0) { $mesg='
'.$langs->trans("RecordModifiedSuccessfully").'
'; } else { dol_print_error($db); } } /* * * */ $wikihelp='EN:Module_ClickToDial_En|FR:Module_ClickToDial|ES:Módulo_ClickTodial_Es'; llxHeader('',$langs->trans("ClickToDialSetup"),$wikihelp); $linkback=''.$langs->trans("BackToModuleList").''; print_fiche_titre($langs->trans("ClickToDialSetup"),$linkback,'setup'); print $langs->trans("ClickToDialDesc")."
\n"; if ($mesg) print '
'.$mesg; print '
'; print '
'; print ''; print ''; $var=true; print ''; print ''; print ''; print ''; print "\n"; $var=!$var; print ''; print ''; print '
'.$langs->trans("Name").''.$langs->trans("Value").''.$langs->trans("Description").'
'; print $langs->trans("URL").''; print ''; print ''; print $langs->trans("ClickToDialUrlDesc").'
'; print $langs->trans("Example").': http://myphoneserver/mypage?login=%3$s&password=%4$s&caller=%2$s&called=%1$s'; print '

'; /*if (! empty($conf->global->CLICKTODIAL_URL)) { print $langs->trans("Test"); // Add a phone number to test } */ $db->close(); llxFooter('$Date$ - $Revision$'); ?>