2010-12-18 12:09:26 +01:00
|
|
|
<?php
|
2011-09-20 17:41:16 +02:00
|
|
|
/* Copyright (C) 2006-2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
2018-10-27 14:43:12 +02:00
|
|
|
* Copyright (C) 2011 Regis Houssin <regis.houssin@inodbox.com>
|
2024-11-04 23:53:20 +01:00
|
|
|
* Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
|
2010-12-18 12:09:26 +01: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
|
2013-01-16 15:36:08 +01:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2010-12-18 12:09:26 +01:00
|
|
|
* (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
|
2019-09-23 21:55:30 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2010-12-18 12:09:26 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \file htdocs/webservices/server_invoice.php
|
|
|
|
|
* \brief File that is entry point to call Dolibarr WebServices
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// This is to make Dolibarr working with Plesk
|
|
|
|
|
set_include_path($_SERVER['DOCUMENT_ROOT'].'/htdocs');
|
|
|
|
|
|
2012-08-22 23:11:24 +02:00
|
|
|
require_once '../master.inc.php';
|
2020-04-10 10:59:32 +02:00
|
|
|
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
2012-08-22 23:11:24 +02:00
|
|
|
require_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
|
2024-11-04 23:53:20 +01:00
|
|
|
/**
|
|
|
|
|
* @var Conf $conf
|
|
|
|
|
* @var DoliDB $db
|
|
|
|
|
* @var HookManager $hookmanager
|
|
|
|
|
* @var Translate $langs
|
|
|
|
|
* @var User $user
|
|
|
|
|
*/
|
2010-12-18 12:09:26 +01:00
|
|
|
|
|
|
|
|
$langs->load("admin");
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* View
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
dol_syslog("Call Dolibarr webservices interfaces");
|
|
|
|
|
|
|
|
|
|
// Enable and test if module web services is enabled
|
2023-11-27 12:08:48 +01:00
|
|
|
if (!getDolGlobalString('MAIN_MODULE_WEBSERVICES')) {
|
2010-12-18 12:09:26 +01:00
|
|
|
$langs->load("admin");
|
|
|
|
|
dol_syslog("Call Dolibarr webservices interfaces with module webservices disabled");
|
2019-01-27 11:55:16 +01:00
|
|
|
print $langs->trans("WarningModuleNotActive", 'WebServices').'.<br><br>';
|
2010-12-18 12:09:26 +01:00
|
|
|
print $langs->trans("ToActivateModule");
|
|
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// WSDL
|
2015-11-22 17:17:06 +01:00
|
|
|
print 'List of available SOAP Web services is visible on the setup area, setup page of module WebService SOAP.';
|
2010-12-18 12:09:26 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
$db->close();
|