Fix #yogosha16039
This commit is contained in:
parent
56a0b16abc
commit
ec3fcd852a
@ -23,11 +23,29 @@
|
|||||||
* \brief File that is entry point to call Dolibarr WebServices
|
* \brief File that is entry point to call Dolibarr WebServices
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined("NOCSRFCHECK")) {
|
if (!defined('NOCSRFCHECK')) {
|
||||||
define("NOCSRFCHECK", '1');
|
define('NOCSRFCHECK', '1'); // Do not check anti CSRF attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOTOKENRENEWAL')) {
|
||||||
|
define('NOTOKENRENEWAL', '1'); // Do not check anti POST attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREMENU')) {
|
||||||
|
define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREHTML')) {
|
||||||
|
define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREAJAX')) {
|
||||||
|
define('NOREQUIREAJAX', '1'); // Do not load ajax.lib.php library
|
||||||
|
}
|
||||||
|
if (!defined("NOLOGIN")) {
|
||||||
|
define("NOLOGIN", '1'); // If this page is public (can be called outside logged session)
|
||||||
|
}
|
||||||
|
if (!defined("NOSESSION")) {
|
||||||
|
define("NOSESSION", '1');
|
||||||
}
|
}
|
||||||
|
|
||||||
require "../master.inc.php";
|
require '../main.inc.php';
|
||||||
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
||||||
require_once DOL_DOCUMENT_ROOT."/core/lib/ws.lib.php";
|
require_once DOL_DOCUMENT_ROOT."/core/lib/ws.lib.php";
|
||||||
|
|
||||||
|
|||||||
@ -21,11 +21,29 @@
|
|||||||
* \brief File that is entry point to call Dolibarr WebServices
|
* \brief File that is entry point to call Dolibarr WebServices
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined("NOCSRFCHECK")) {
|
if (!defined('NOCSRFCHECK')) {
|
||||||
define("NOCSRFCHECK", '1');
|
define('NOCSRFCHECK', '1'); // Do not check anti CSRF attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOTOKENRENEWAL')) {
|
||||||
|
define('NOTOKENRENEWAL', '1'); // Do not check anti POST attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREMENU')) {
|
||||||
|
define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREHTML')) {
|
||||||
|
define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREAJAX')) {
|
||||||
|
define('NOREQUIREAJAX', '1'); // Do not load ajax.lib.php library
|
||||||
|
}
|
||||||
|
if (!defined("NOLOGIN")) {
|
||||||
|
define("NOLOGIN", '1'); // If this page is public (can be called outside logged session)
|
||||||
|
}
|
||||||
|
if (!defined("NOSESSION")) {
|
||||||
|
define("NOSESSION", '1');
|
||||||
}
|
}
|
||||||
|
|
||||||
require "../master.inc.php";
|
require '../main.inc.php';
|
||||||
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
||||||
require_once DOL_DOCUMENT_ROOT."/categories/class/categorie.class.php";
|
require_once DOL_DOCUMENT_ROOT."/categories/class/categorie.class.php";
|
||||||
|
|||||||
@ -21,11 +21,29 @@
|
|||||||
* \brief File that is entry point to call Dolibarr WebServices
|
* \brief File that is entry point to call Dolibarr WebServices
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined("NOCSRFCHECK")) {
|
if (!defined('NOCSRFCHECK')) {
|
||||||
define("NOCSRFCHECK", '1');
|
define('NOCSRFCHECK', '1'); // Do not check anti CSRF attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOTOKENRENEWAL')) {
|
||||||
|
define('NOTOKENRENEWAL', '1'); // Do not check anti POST attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREMENU')) {
|
||||||
|
define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREHTML')) {
|
||||||
|
define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREAJAX')) {
|
||||||
|
define('NOREQUIREAJAX', '1'); // Do not load ajax.lib.php library
|
||||||
|
}
|
||||||
|
if (!defined("NOLOGIN")) {
|
||||||
|
define("NOLOGIN", '1'); // If this page is public (can be called outside logged session)
|
||||||
|
}
|
||||||
|
if (!defined("NOSESSION")) {
|
||||||
|
define("NOSESSION", '1');
|
||||||
}
|
}
|
||||||
|
|
||||||
require "../master.inc.php";
|
require '../main.inc.php';
|
||||||
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
||||||
require_once DOL_DOCUMENT_ROOT."/core/lib/ws.lib.php";
|
require_once DOL_DOCUMENT_ROOT."/core/lib/ws.lib.php";
|
||||||
require_once DOL_DOCUMENT_ROOT."/contact/class/contact.class.php";
|
require_once DOL_DOCUMENT_ROOT."/contact/class/contact.class.php";
|
||||||
|
|||||||
@ -21,11 +21,29 @@
|
|||||||
* \brief File that is entry point to call Dolibarr WebServices
|
* \brief File that is entry point to call Dolibarr WebServices
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined("NOCSRFCHECK")) {
|
if (!defined('NOCSRFCHECK')) {
|
||||||
define("NOCSRFCHECK", '1');
|
define('NOCSRFCHECK', '1'); // Do not check anti CSRF attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOTOKENRENEWAL')) {
|
||||||
|
define('NOTOKENRENEWAL', '1'); // Do not check anti POST attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREMENU')) {
|
||||||
|
define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREHTML')) {
|
||||||
|
define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREAJAX')) {
|
||||||
|
define('NOREQUIREAJAX', '1'); // Do not load ajax.lib.php library
|
||||||
|
}
|
||||||
|
if (!defined("NOLOGIN")) {
|
||||||
|
define("NOLOGIN", '1'); // If this page is public (can be called outside logged session)
|
||||||
|
}
|
||||||
|
if (!defined("NOSESSION")) {
|
||||||
|
define("NOSESSION", '1');
|
||||||
}
|
}
|
||||||
|
|
||||||
require '../master.inc.php';
|
require '../main.inc.php';
|
||||||
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
||||||
|
|||||||
@ -22,17 +22,36 @@
|
|||||||
* \brief File that is entry point to call Dolibarr WebServices
|
* \brief File that is entry point to call Dolibarr WebServices
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined("NOCSRFCHECK")) {
|
if (!defined('NOCSRFCHECK')) {
|
||||||
define("NOCSRFCHECK", '1');
|
define('NOCSRFCHECK', '1'); // Do not check anti CSRF attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOTOKENRENEWAL')) {
|
||||||
|
define('NOTOKENRENEWAL', '1'); // Do not check anti POST attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREMENU')) {
|
||||||
|
define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREHTML')) {
|
||||||
|
define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREAJAX')) {
|
||||||
|
define('NOREQUIREAJAX', '1'); // Do not load ajax.lib.php library
|
||||||
|
}
|
||||||
|
if (!defined("NOLOGIN")) {
|
||||||
|
define("NOLOGIN", '1'); // If this page is public (can be called outside logged session)
|
||||||
|
}
|
||||||
|
if (!defined("NOSESSION")) {
|
||||||
|
define("NOSESSION", '1');
|
||||||
}
|
}
|
||||||
|
|
||||||
require '../master.inc.php';
|
require '../main.inc.php';
|
||||||
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
|
||||||
require_once DOL_DOCUMENT_ROOT."/commande/class/commande.class.php";
|
require_once DOL_DOCUMENT_ROOT."/commande/class/commande.class.php";
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
dol_syslog("Call Dolibarr webservices interfaces");
|
dol_syslog("Call Dolibarr webservices interfaces");
|
||||||
|
|
||||||
$langs->load("main");
|
$langs->load("main");
|
||||||
|
|||||||
@ -20,11 +20,29 @@
|
|||||||
* \brief File that is entry point to call Dolibarr WebServices
|
* \brief File that is entry point to call Dolibarr WebServices
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined("NOCSRFCHECK")) {
|
if (!defined('NOCSRFCHECK')) {
|
||||||
define("NOCSRFCHECK", '1');
|
define('NOCSRFCHECK', '1'); // Do not check anti CSRF attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOTOKENRENEWAL')) {
|
||||||
|
define('NOTOKENRENEWAL', '1'); // Do not check anti POST attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREMENU')) {
|
||||||
|
define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREHTML')) {
|
||||||
|
define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREAJAX')) {
|
||||||
|
define('NOREQUIREAJAX', '1'); // Do not load ajax.lib.php library
|
||||||
|
}
|
||||||
|
if (!defined("NOLOGIN")) {
|
||||||
|
define("NOLOGIN", '1'); // If this page is public (can be called outside logged session)
|
||||||
|
}
|
||||||
|
if (!defined("NOSESSION")) {
|
||||||
|
define("NOSESSION", '1');
|
||||||
}
|
}
|
||||||
|
|
||||||
require '../master.inc.php';
|
require '../main.inc.php';
|
||||||
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
|
||||||
|
|||||||
@ -24,10 +24,29 @@
|
|||||||
* \brief File that is entry point to call Dolibarr WebServices
|
* \brief File that is entry point to call Dolibarr WebServices
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// This is to make Dolibarr working with Plesk
|
if (!defined('NOCSRFCHECK')) {
|
||||||
set_include_path($_SERVER['DOCUMENT_ROOT'].'/htdocs');
|
define('NOCSRFCHECK', '1'); // Do not check anti CSRF attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOTOKENRENEWAL')) {
|
||||||
|
define('NOTOKENRENEWAL', '1'); // Do not check anti POST attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREMENU')) {
|
||||||
|
define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREHTML')) {
|
||||||
|
define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREAJAX')) {
|
||||||
|
define('NOREQUIREAJAX', '1'); // Do not load ajax.lib.php library
|
||||||
|
}
|
||||||
|
if (!defined("NOLOGIN")) {
|
||||||
|
define("NOLOGIN", '1'); // If this page is public (can be called outside logged session)
|
||||||
|
}
|
||||||
|
if (!defined("NOSESSION")) {
|
||||||
|
define("NOSESSION", '1');
|
||||||
|
}
|
||||||
|
|
||||||
require '../master.inc.php';
|
require '../main.inc.php';
|
||||||
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
||||||
|
|||||||
@ -24,11 +24,29 @@
|
|||||||
* \brief File that is entry point to call Dolibarr WebServices
|
* \brief File that is entry point to call Dolibarr WebServices
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined("NOCSRFCHECK")) {
|
if (!defined('NOCSRFCHECK')) {
|
||||||
define("NOCSRFCHECK", '1');
|
define('NOCSRFCHECK', '1'); // Do not check anti CSRF attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOTOKENRENEWAL')) {
|
||||||
|
define('NOTOKENRENEWAL', '1'); // Do not check anti POST attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREMENU')) {
|
||||||
|
define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREHTML')) {
|
||||||
|
define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREAJAX')) {
|
||||||
|
define('NOREQUIREAJAX', '1'); // Do not load ajax.lib.php library
|
||||||
|
}
|
||||||
|
if (!defined("NOLOGIN")) {
|
||||||
|
define("NOLOGIN", '1'); // If this page is public (can be called outside logged session)
|
||||||
|
}
|
||||||
|
if (!defined("NOSESSION")) {
|
||||||
|
define("NOSESSION", '1');
|
||||||
}
|
}
|
||||||
|
|
||||||
require '../master.inc.php';
|
require '../main.inc.php';
|
||||||
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/functions.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/functions.lib.php';
|
||||||
|
|||||||
@ -21,11 +21,29 @@
|
|||||||
* \brief File that is entry point to call Dolibarr WebServices
|
* \brief File that is entry point to call Dolibarr WebServices
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined("NOCSRFCHECK")) {
|
if (!defined('NOCSRFCHECK')) {
|
||||||
define("NOCSRFCHECK", '1');
|
define('NOCSRFCHECK', '1'); // Do not check anti CSRF attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOTOKENRENEWAL')) {
|
||||||
|
define('NOTOKENRENEWAL', '1'); // Do not check anti POST attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREMENU')) {
|
||||||
|
define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREHTML')) {
|
||||||
|
define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREAJAX')) {
|
||||||
|
define('NOREQUIREAJAX', '1'); // Do not load ajax.lib.php library
|
||||||
|
}
|
||||||
|
if (!defined("NOLOGIN")) {
|
||||||
|
define("NOLOGIN", '1'); // If this page is public (can be called outside logged session)
|
||||||
|
}
|
||||||
|
if (!defined("NOSESSION")) {
|
||||||
|
define("NOSESSION", '1');
|
||||||
}
|
}
|
||||||
|
|
||||||
require '../master.inc.php';
|
require '../main.inc.php';
|
||||||
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
|
||||||
|
|||||||
@ -20,11 +20,29 @@
|
|||||||
* \brief File that is entry point to call Dolibarr WebServices
|
* \brief File that is entry point to call Dolibarr WebServices
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined("NOCSRFCHECK")) {
|
if (!defined('NOCSRFCHECK')) {
|
||||||
define("NOCSRFCHECK", '1');
|
define('NOCSRFCHECK', '1'); // Do not check anti CSRF attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOTOKENRENEWAL')) {
|
||||||
|
define('NOTOKENRENEWAL', '1'); // Do not check anti POST attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREMENU')) {
|
||||||
|
define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREHTML')) {
|
||||||
|
define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREAJAX')) {
|
||||||
|
define('NOREQUIREAJAX', '1'); // Do not load ajax.lib.php library
|
||||||
|
}
|
||||||
|
if (!defined("NOLOGIN")) {
|
||||||
|
define("NOLOGIN", '1'); // If this page is public (can be called outside logged session)
|
||||||
|
}
|
||||||
|
if (!defined("NOSESSION")) {
|
||||||
|
define("NOSESSION", '1');
|
||||||
}
|
}
|
||||||
|
|
||||||
require '../master.inc.php';
|
require '../main.inc.php';
|
||||||
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
|
||||||
|
|||||||
@ -20,11 +20,29 @@
|
|||||||
* \brief File that is entry point to call Dolibarr WebServices
|
* \brief File that is entry point to call Dolibarr WebServices
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined("NOCSRFCHECK")) {
|
if (!defined('NOCSRFCHECK')) {
|
||||||
define("NOCSRFCHECK", '1');
|
define('NOCSRFCHECK', '1'); // Do not check anti CSRF attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOTOKENRENEWAL')) {
|
||||||
|
define('NOTOKENRENEWAL', '1'); // Do not check anti POST attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREMENU')) {
|
||||||
|
define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREHTML')) {
|
||||||
|
define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREAJAX')) {
|
||||||
|
define('NOREQUIREAJAX', '1'); // Do not load ajax.lib.php library
|
||||||
|
}
|
||||||
|
if (!defined("NOLOGIN")) {
|
||||||
|
define("NOLOGIN", '1'); // If this page is public (can be called outside logged session)
|
||||||
|
}
|
||||||
|
if (!defined("NOSESSION")) {
|
||||||
|
define("NOSESSION", '1');
|
||||||
}
|
}
|
||||||
|
|
||||||
require_once '../master.inc.php';
|
require '../main.inc.php';
|
||||||
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
|
||||||
|
|||||||
@ -20,11 +20,29 @@
|
|||||||
* \brief File that is entry point to call Dolibarr WebServices
|
* \brief File that is entry point to call Dolibarr WebServices
|
||||||
*/
|
*/
|
||||||
|
|
||||||
if (!defined("NOCSRFCHECK")) {
|
if (!defined('NOCSRFCHECK')) {
|
||||||
define("NOCSRFCHECK", '1');
|
define('NOCSRFCHECK', '1'); // Do not check anti CSRF attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOTOKENRENEWAL')) {
|
||||||
|
define('NOTOKENRENEWAL', '1'); // Do not check anti POST attack test
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREMENU')) {
|
||||||
|
define('NOREQUIREMENU', '1'); // If there is no need to load and show top and left menu
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREHTML')) {
|
||||||
|
define('NOREQUIREHTML', '1'); // If we don't need to load the html.form.class.php
|
||||||
|
}
|
||||||
|
if (!defined('NOREQUIREAJAX')) {
|
||||||
|
define('NOREQUIREAJAX', '1'); // Do not load ajax.lib.php library
|
||||||
|
}
|
||||||
|
if (!defined("NOLOGIN")) {
|
||||||
|
define("NOLOGIN", '1'); // If this page is public (can be called outside logged session)
|
||||||
|
}
|
||||||
|
if (!defined("NOSESSION")) {
|
||||||
|
define("NOSESSION", '1');
|
||||||
}
|
}
|
||||||
|
|
||||||
require_once '../master.inc.php';
|
require '../main.inc.php';
|
||||||
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
require_once NUSOAP_PATH.'/nusoap.php'; // Include SOAP
|
||||||
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/ws.lib.php';
|
||||||
require_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
|
require_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user