* 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/webservices/admin/webservices.php * \ingroup webservices * \brief Page to setup webservices module * \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, "PAYBOX_IBS_DEVISE",$_POST["PAYBOX_IBS_DEVISE"],'chaine',0,'',$conf->entity); if ($result >= 0) { $mesg='
'.$langs->trans("SetupSaved").'
'; } else { dol_print_error($db); } } /* * View */ llxHeader(); $linkback=''.$langs->trans("BackToModuleList").''; print_fiche_titre($langs->trans("WebServicesSetup"),$linkback,'setup'); print $langs->trans("WebServicesDesc")."
\n"; if ($mesg) print '
'.$mesg; print '

'; // Should work with DOL_URL_ROOT='' or DOL_URL_ROOT='/dolibarr' $urlwithouturlroot=preg_replace('/'.preg_quote(DOL_URL_ROOT,'/').'$/i','',$dolibarr_main_url_root); print ''.$langs->trans("WSDLCanBeDownloadedHere").':
'; $url=$urlwithouturlroot.DOL_URL_ROOT.'/webservices/server.php?wsdl'; print img_picto('','puce.png').' '.''.$url."
\n"; print '
'; print ''.$langs->trans("EndPointIs").':
'; $url=$urlwithouturlroot.DOL_URL_ROOT.'/webservices/server.php'; print img_picto('','puce.png').' '.''.$url."
\n"; print '
'; $db->close(); llxFooter('$Date$ - $Revision$'); ?>