mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
New webservice methods for contact :
- new method to get contact info - new method to create a contact - new method to get a list of contact for a thirdparty
This commit is contained in:
parent
771634c66b
commit
8ae10ef9f0
541
htdocs/webservices/server_contact.php
Normal file
541
htdocs/webservices/server_contact.php
Normal file
|
|
@ -0,0 +1,541 @@
|
|||
<?php
|
||||
/* Copyright (C) 2006-2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||
* Copyright (C) 2012 JF FERRY <jfefe@aternatik.fr>
|
||||
*
|
||||
* 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, see <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
/**
|
||||
* \file htdocs/webservices/server_contact.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');
|
||||
|
||||
require_once("../master.inc.php");
|
||||
require_once(NUSOAP_PATH.'/nusoap.php'); // Include SOAP
|
||||
require_once(DOL_DOCUMENT_ROOT."/core/lib/ws.lib.php");
|
||||
require_once(DOL_DOCUMENT_ROOT."/contact/class/contact.class.php");
|
||||
|
||||
|
||||
dol_syslog("Call Contact webservices interfaces");
|
||||
|
||||
// Enable and test if module web services is enabled
|
||||
if (empty($conf->global->MAIN_MODULE_WEBSERVICES))
|
||||
{
|
||||
$langs->load("admin");
|
||||
dol_syslog("Call Dolibarr webservices interfaces with module webservices disabled");
|
||||
print $langs->trans("WarningModuleNotActive",'WebServices').'.<br><br>';
|
||||
print $langs->trans("ToActivateModule");
|
||||
exit;
|
||||
}
|
||||
|
||||
// Create the soap Object
|
||||
$server = new nusoap_server();
|
||||
$server->soap_defencoding='UTF-8';
|
||||
$server->decode_utf8=false;
|
||||
$ns='http://www.dolibarr.org/ns/';
|
||||
$server->configureWSDL('WebServicesDolibarrContact',$ns);
|
||||
$server->wsdl->schemaTargetNamespace=$ns;
|
||||
|
||||
|
||||
// Define WSDL Authentication object
|
||||
$server->wsdl->addComplexType(
|
||||
'authentication',
|
||||
'complexType',
|
||||
'struct',
|
||||
'all',
|
||||
'',
|
||||
array(
|
||||
'dolibarrkey' => array('name'=>'dolibarrkey','type'=>'xsd:string'),
|
||||
'sourceapplication' => array('name'=>'sourceapplication','type'=>'xsd:string'),
|
||||
'login' => array('name'=>'login','type'=>'xsd:string'),
|
||||
'password' => array('name'=>'password','type'=>'xsd:string'),
|
||||
'entity' => array('name'=>'entity','type'=>'xsd:string'),
|
||||
)
|
||||
);
|
||||
|
||||
// Define WSDL Return object
|
||||
$server->wsdl->addComplexType(
|
||||
'result',
|
||||
'complexType',
|
||||
'struct',
|
||||
'all',
|
||||
'',
|
||||
array(
|
||||
'result_code' => array('name'=>'result_code','type'=>'xsd:string'),
|
||||
'result_label' => array('name'=>'result_label','type'=>'xsd:string'),
|
||||
)
|
||||
);
|
||||
|
||||
// Define other specific objects
|
||||
$server->wsdl->addComplexType(
|
||||
'contact',
|
||||
'complexType',
|
||||
'struct',
|
||||
'all',
|
||||
'',
|
||||
array(
|
||||
'id' => array('name'=>'id','type'=>'xsd:string'),
|
||||
'civilite_id' => array('name'=>'civilite_id','type'=>'xsd:string'),
|
||||
'lastname' => array('name'=>'lastname','type'=>'xsd:string'),
|
||||
'name' => array('name'=>'name','type'=>'xsd:string'),
|
||||
'firstname' => array('name'=>'firstname','type'=>'xsd:string'),
|
||||
'address' => array('name'=>'address','type'=>'xsd:string'),
|
||||
'cp' => array('name'=>'cp','type'=>'xsd:string'),
|
||||
'zip' => array('name'=>'zip','type'=>'xsd:string'),
|
||||
'town' => array('name'=>'town','type'=>'xsd:string'),
|
||||
'state_id' => array('name'=>'state_id','type'=>'xsd:string'),
|
||||
'state_code' => array('name'=>'state_code','type'=>'xsd:string'),
|
||||
'state' => array('name'=>'state','type'=>'xsd:string'),
|
||||
'fk_pays' => array('name'=>'fk_pays','type'=>'xsd:string'),
|
||||
'pays_code' => array('name'=>'pays_code','type'=>'xsd:string'),
|
||||
'pays' => array('name'=>'pays','type'=>'xsd:string'),
|
||||
'country_id' => array('name'=>'country_id','type'=>'xsd:string'),
|
||||
'country_code' => array('name'=>'country_code','type'=>'xsd:string'),
|
||||
'country' => array('name'=>'country','type'=>'xsd:string'),
|
||||
'socid' => array('name'=>'socid','type'=>'xsd:string'),
|
||||
'status' => array('name'=>'status','type'=>'xsd:string'),
|
||||
'code' => array('name'=>'code','type'=>'xsd:string'),
|
||||
'email' => array('name'=>'email','type'=>'xsd:string'),
|
||||
'birthday' => array('name'=>'birthday','type'=>'xsd:string'),
|
||||
'default_lang' => array('name'=>'default_lang','type'=>'xsd:string'),
|
||||
'note' => array('name'=>'note','type'=>'xsd:string'),
|
||||
'no_email' => array('name'=>'no_email','type'=>'xsd:string'),
|
||||
'ref_facturation' => array('name'=>'ref_facturation','type'=>'xsd:string'),
|
||||
'ref_contrat' => array('name'=>'ref_contrat','type'=>'xsd:string'),
|
||||
'ref_commande' => array('name'=>'ref_commande','type'=>'xsd:string'),
|
||||
'ref_propal' => array('name'=>'ref_propal','type'=>'xsd:string'),
|
||||
'user_id' => array('name'=>'user_id','type'=>'xsd:string'),
|
||||
'user_login' => array('name'=>'user_login','type'=>'xsd:string'),
|
||||
'civility_id' => array('name'=>'civility_id','type'=>'xsd:string'),
|
||||
//...
|
||||
)
|
||||
);
|
||||
|
||||
$server->wsdl->addComplexType(
|
||||
'ContactsArray2',
|
||||
'complexType',
|
||||
'array',
|
||||
'sequence',
|
||||
'',
|
||||
array(
|
||||
'contact' => array(
|
||||
'name' => 'contact',
|
||||
'type' => 'tns:contact',
|
||||
'minOccurs' => '0',
|
||||
'maxOccurs' => 'unbounded'
|
||||
)
|
||||
)
|
||||
);
|
||||
|
||||
|
||||
|
||||
|
||||
// 5 styles: RPC/encoded, RPC/literal, Document/encoded (not WS-I compliant), Document/literal, Document/literal wrapped
|
||||
// Style merely dictates how to translate a WSDL binding to a SOAP message. Nothing more. You can use either style with any programming model.
|
||||
// http://www.ibm.com/developerworks/webservices/library/ws-whichwsdl/
|
||||
$styledoc='rpc'; // rpc/document (document is an extend into SOAP 1.0 to support unstructured messages)
|
||||
$styleuse='encoded'; // encoded/literal/literal wrapped
|
||||
// Better choice is document/literal wrapped but literal wrapped not supported by nusoap.
|
||||
|
||||
|
||||
// Register WSDL
|
||||
$server->register(
|
||||
'getContact',
|
||||
// Entry values
|
||||
array('authentication'=>'tns:authentication','id'=>'xsd:string','ref'=>'xsd:string','ref_ext'=>'xsd:string'),
|
||||
// Exit values
|
||||
array('result'=>'tns:result','contact'=>'tns:contact'),
|
||||
$ns,
|
||||
$ns.'#getContact',
|
||||
$styledoc,
|
||||
$styleuse,
|
||||
'WS to get contact'
|
||||
);
|
||||
|
||||
// Register WSDL
|
||||
$server->register(
|
||||
'createContact',
|
||||
// Entry values
|
||||
array('authentication'=>'tns:authentication','contact'=>'tns:contact'),
|
||||
// Exit values
|
||||
array('result'=>'tns:result','id'=>'xsd:string'),
|
||||
$ns,
|
||||
$ns.'#createContact',
|
||||
$styledoc,
|
||||
$styleuse,
|
||||
'WS to create a contact'
|
||||
);
|
||||
|
||||
$server->register(
|
||||
'getContactsForThirdParty',
|
||||
// Entry values
|
||||
array('authentication'=>'tns:authentication','idthirdparty'=>'xsd:string'),
|
||||
// Exit values
|
||||
array('result'=>'tns:result','contacts'=>'tns:ContactsArray2'),
|
||||
$ns,
|
||||
$ns.'#getContactsForThirdParty',
|
||||
$styledoc,
|
||||
$styleuse,
|
||||
'WS to get all contacts of a third party'
|
||||
);
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Get Contact
|
||||
*
|
||||
* @param array $authentication Array of authentication information
|
||||
* @param int $id Id of object
|
||||
* @param string $ref Ref of object
|
||||
* @param ref_ext $ref_ext Ref external of object
|
||||
* @return mixed
|
||||
*/
|
||||
function getContact($authentication,$id,$ref='',$ref_ext='')
|
||||
{
|
||||
global $db,$conf,$langs;
|
||||
|
||||
dol_syslog("Function: getContact login=".$authentication['login']." id=".$id." ref=".$ref." ref_ext=".$ref_ext);
|
||||
|
||||
if ($authentication['entity']) $conf->entity=$authentication['entity'];
|
||||
|
||||
// Init and check authentication
|
||||
$objectresp=array();
|
||||
$errorcode='';$errorlabel='';
|
||||
$error=0;
|
||||
$fuser=check_authentication($authentication,$error,$errorcode,$errorlabel);
|
||||
// Check parameters
|
||||
if (! $error && (($id && $ref) || ($id && $ref_ext) || ($ref && $ref_ext)))
|
||||
{
|
||||
$error++;
|
||||
$errorcode='BAD_PARAMETERS'; $errorlabel="Parameter id, ref and ref_ext can't be both provided. You must choose one or other but not both.";
|
||||
}
|
||||
|
||||
if (! $error)
|
||||
{
|
||||
$fuser->getrights();
|
||||
|
||||
if ($fuser->rights->contact->read)
|
||||
{
|
||||
$contact=new Contact($db);
|
||||
$result=$contact->fetch($id,$ref,$ref_ext);
|
||||
if ($result > 0)
|
||||
{
|
||||
// Create
|
||||
$objectresp = array(
|
||||
'result'=>array('result_code'=>'OK', 'result_label'=>''),
|
||||
'contact'=>array(
|
||||
'id' => $contact->id,
|
||||
'lastname' => $contact->lastname,
|
||||
'name' => $contact->name,
|
||||
'firstname' => $contact->firstname,
|
||||
'address' => $contact->address,
|
||||
'cp' => $contact->cp,
|
||||
'zip' => $contact->zip,
|
||||
'town' => $contact->town,
|
||||
'state_id' => $contact->state_id,
|
||||
'state_code' => $contact->state_code,
|
||||
'state' => $contact->state,
|
||||
'fk_pays' => $contact->fk_pays,
|
||||
'pays_code' => $contact->pays_code,
|
||||
'pays' => $contact->pays,
|
||||
'country_id' => $contact->country_id,
|
||||
'country_code' => $contact->country_code,
|
||||
'country' => $contact->country,
|
||||
'socid' => $contact->socid,
|
||||
'status' => $contact->status,
|
||||
'code' => $contact->code,
|
||||
'email' => $contact->email,
|
||||
'birthday' => $contact->birthday,
|
||||
'default_lang' => $contact->default_lang,
|
||||
'note' => $contact->note,
|
||||
'no_email' => $contact->no_email,
|
||||
'ref_facturation' => $contact->ref_facturation,
|
||||
'ref_contrat' => $contact->ref_contrat,
|
||||
'ref_commande' => $contact->ref_commande,
|
||||
'ref_propal' => $contact->ref_propal,
|
||||
'user_id' => $contact->user_id,
|
||||
'user_login' => $contact->user_login,
|
||||
'civility_id' => $contact->civility_id
|
||||
)
|
||||
);
|
||||
}
|
||||
else
|
||||
{
|
||||
$error++;
|
||||
$errorcode='NOT_FOUND'; $errorlabel='Object not found for id='.$id.' nor ref='.$ref.' nor ref_ext='.$ref_ext;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
$error++;
|
||||
$errorcode='PERMISSION_DENIED'; $errorlabel='User does not have permission for this request';
|
||||
}
|
||||
}
|
||||
|
||||
if ($error)
|
||||
{
|
||||
$objectresp = array('result'=>array('result_code' => $errorcode, 'result_label' => $errorlabel));
|
||||
}
|
||||
|
||||
return $objectresp;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Create Contact
|
||||
*
|
||||
* @param array $authentication Array of authentication information
|
||||
* @param Contact $contact $contact
|
||||
* @return array Array result
|
||||
*/
|
||||
function createContact($authentication,$contact)
|
||||
{
|
||||
global $db,$conf,$langs;
|
||||
|
||||
$now=dol_now();
|
||||
|
||||
dol_syslog("Function: createContact login=".$authentication['login']);
|
||||
|
||||
if ($authentication['entity']) $conf->entity=$authentication['entity'];
|
||||
|
||||
// Init and check authentication
|
||||
$objectresp=array();
|
||||
$errorcode='';$errorlabel='';
|
||||
$error=0;
|
||||
$fuser=check_authentication($authentication,$error,$errorcode,$errorlabel);
|
||||
// Check parameters
|
||||
|
||||
|
||||
if (! $error)
|
||||
{
|
||||
|
||||
|
||||
$newobject=new Contact($db);
|
||||
|
||||
$newobject->id=$contact->id;
|
||||
$newobject->civility_id=$contact->civility_id;
|
||||
$newobject->lastname=$contact->lastname;
|
||||
$newobject->name=$contact->name;
|
||||
$newobject->firstname=$contact->firstname;
|
||||
$newobject->address=$contact->address;
|
||||
$newobject->zip=$contact->zip;
|
||||
$newobject->town=$contact->town;
|
||||
$newobject->state_id=$contact->state_id;
|
||||
$newobject->state_code=$contact->state_code;
|
||||
$newobject->state=$contact->state;
|
||||
$newobject->fk_pays=$contact->fk_pays;
|
||||
$newobject->pays_code=$contact->pays_code;
|
||||
$newobject->pays=$contact->pays;
|
||||
$newobject->country_id=$contact->country_id;
|
||||
$newobject->country_code=$contact->country_code;
|
||||
$newobject->country=$contact->country;
|
||||
$newobject->socid=$contact->socid;
|
||||
$newobject->status=$contact->status;
|
||||
$newobject->code=$contact->code;
|
||||
$newobject->email=$contact->email;
|
||||
$newobject->birthday=$contact->birthday;
|
||||
$newobject->default_lang=$contact->default_lang;
|
||||
$newobject->note=$contact->note;
|
||||
$newobject->no_email=$contact->no_email;
|
||||
$newobject->ref_facturation=$contact->ref_facturation;
|
||||
$newobject->ref_contrat=$contact->ref_contrat;
|
||||
$newobject->ref_commande=$contact->ref_commande;
|
||||
$newobject->ref_propal=$contact->ref_propal;
|
||||
$newobject->user_id=$contact->user_id;
|
||||
$newobject->user_login=$contact->user_login;
|
||||
|
||||
|
||||
//...
|
||||
|
||||
$db->begin();
|
||||
|
||||
$result=$newobject->create($fuser);
|
||||
if ($result <= 0)
|
||||
{
|
||||
$error++;
|
||||
}
|
||||
|
||||
if (! $error)
|
||||
{
|
||||
$db->commit();
|
||||
$objectresp=array('result'=>array('result_code'=>'OK', 'result_label'=>''),'id'=>$newobject->id,'ref'=>$newobject->ref);
|
||||
}
|
||||
else
|
||||
{
|
||||
$db->rollback();
|
||||
$error++;
|
||||
$errorcode='KO';
|
||||
$errorlabel=$newobject->error;
|
||||
}
|
||||
}
|
||||
|
||||
if ($error)
|
||||
{
|
||||
$objectresp = array('result'=>array('result_code' => $errorcode, 'result_label' => $errorlabel));
|
||||
}
|
||||
|
||||
return $objectresp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get list of contacts for third party
|
||||
*
|
||||
* @param array $authentication Array of authentication information
|
||||
* @param int $idthirdparty Id thirdparty
|
||||
* @return array Array result
|
||||
*/
|
||||
function getContactsForThirdParty($authentication,$idthirdparty)
|
||||
{
|
||||
global $db,$conf,$langs;
|
||||
|
||||
dol_syslog("Function: getContactsForThirdParty login=".$authentication['login']." idthirdparty=".$idthirdparty);
|
||||
|
||||
if ($authentication['entity']) $conf->entity=$authentication['entity'];
|
||||
|
||||
// Init and check authentication
|
||||
$objectresp=array();
|
||||
$errorcode='';$errorlabel='';
|
||||
$error=0;
|
||||
$fuser=check_authentication($authentication,$error,$errorcode,$errorlabel);
|
||||
// Check parameters
|
||||
if (! $error && empty($idthirdparty))
|
||||
{
|
||||
$error++;
|
||||
$errorcode='BAD_PARAMETERS'; $errorlabel='Parameter id is not provided';
|
||||
}
|
||||
|
||||
if (! $error)
|
||||
{
|
||||
$linesinvoice=array();
|
||||
|
||||
$sql = "SELECT c.rowid, c.fk_soc, c.civilite as civility_id, c.name as lastname, c.firstname,";
|
||||
$sql.= " c.address, c.cp as zip, c.ville as town,";
|
||||
$sql.= " c.fk_pays as country_id,";
|
||||
$sql.= " c.fk_departement,";
|
||||
$sql.= " c.birthday,";
|
||||
$sql.= " c.poste, c.phone, c.phone_perso, c.phone_mobile, c.fax, c.email, c.jabberid,";
|
||||
//$sql.= " c.priv, c.note, c.default_lang, c.no_email, c.canvas,";
|
||||
$sql.= " p.libelle as country, p.code as country_code,";
|
||||
$sql.= " d.nom as state, d.code_departement as state_code,";
|
||||
$sql.= " u.rowid as user_id, u.login as user_login,";
|
||||
$sql.= " s.nom as socname, s.address as socaddress, s.cp as soccp, s.ville as soccity, s.default_lang as socdefault_lang";
|
||||
$sql.= " FROM ".MAIN_DB_PREFIX."socpeople as c";
|
||||
$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."c_pays as p ON c.fk_pays = p.rowid";
|
||||
$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."c_departements as d ON c.fk_departement = d.rowid";
|
||||
$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."user as u ON c.rowid = u.fk_socpeople";
|
||||
$sql.= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON c.fk_soc = s.rowid";
|
||||
$sql.= " WHERE c.fk_soc=$idthirdparty";
|
||||
|
||||
|
||||
$resql=$db->query($sql);
|
||||
if ($resql)
|
||||
{
|
||||
$num=$db->num_rows($resql);
|
||||
$i=0;
|
||||
while ($i < $num)
|
||||
{
|
||||
// En attendant remplissage par boucle
|
||||
$obj=$db->fetch_object($resql);
|
||||
|
||||
$contact=new Contact($db);
|
||||
$contact->fetch($obj->rowid);
|
||||
|
||||
|
||||
// Now define invoice
|
||||
$linescontact[]=array(
|
||||
'id' => $contact->id,
|
||||
'ref' => $contact->ref,
|
||||
'civility_id' => $contact->civility_id?$contact->civility_id:'',
|
||||
'lastname' => $contact->lastname?$contact->lastname:'',
|
||||
'firstname' => $contact->firstname?$contact->firstname:'',
|
||||
'address' => $contact->address?$contact->address:'',
|
||||
'zip' => $contact->zip?$contact->zip:'',
|
||||
'town' => $contact->town?$contact->town:'',
|
||||
|
||||
'state_id' => $contact->state_id?$contact->state_id:'',
|
||||
'state_code' => $contact->state_code?$contact->state_code:'',
|
||||
'state' => $contact->state?$contact->state:'',
|
||||
|
||||
'fk_pays' => $contact->fk_pays?$contact->fk_pays:'',
|
||||
'country_id' => $contact->country_id?$contact->country_id:'',
|
||||
'pays_code' => $contact->pays_code?$contact->pays_code:'',
|
||||
'country_code' => $contact->country_code?$contact->country_code:'',
|
||||
'pays' => $contact->pays?$contact->pays:'',
|
||||
'country' => $contact->country?$contact->country:'',
|
||||
|
||||
'socid' => $contact->socid?$contact->socid:'',
|
||||
'socname' => $contact->socname?$contact->socname:'',
|
||||
'poste' => $contact->poste?$contact->poste:'',
|
||||
|
||||
|
||||
|
||||
'phone_pro' => $contact->phone_pro?$contact->phone_pro:'',
|
||||
'fax' => $contact->fax?$contact->fax:'',
|
||||
'phone_perso' => $contact->phone_perso?$contact->phone_perso:'',
|
||||
'phone_mobile' => $contact->phone_mobile?$contact->phone_mobile:'',
|
||||
|
||||
'email' => $contact->email?$contact->email:'',
|
||||
'jabberid' => $contact->jabberid?$contact->jabberid:'',
|
||||
'priv' => $contact->priv?$contact->priv:'',
|
||||
'mail' => $contact->mail?$contact->mail:'',
|
||||
|
||||
'birthday' => $contact->birthday?$contact->birthday:'',
|
||||
'default_lang' => $contact->default_lang?$contact->default_lang:'',
|
||||
'note' => $contact->note?$contact->note:'',
|
||||
'no_email' => $contact->no_email?$contact->no_email:'',
|
||||
'ref_facturation' => $contact->ref_facturation?$contact->ref_facturation:'',
|
||||
'ref_contrat' => $contact->ref_contrat?$contact->ref_contrat:'',
|
||||
'ref_commande' => $contact->ref_commande?$contact->ref_commande:'',
|
||||
'ref_propal' => $contact->ref_propal?$contact->ref_propal:'',
|
||||
'user_id' => $contact->user_id?$contact->user_id:'',
|
||||
'user_login' => $contact->no_email?$contact->user_login:''
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
);
|
||||
|
||||
$i++;
|
||||
}
|
||||
|
||||
$objectresp=array(
|
||||
'result'=>array('result_code'=>'OK', 'result_label'=>''),
|
||||
'contacts'=>$linescontact
|
||||
|
||||
);
|
||||
}
|
||||
else
|
||||
{
|
||||
$error++;
|
||||
$errorcode=$db->lasterrno(); $errorlabel=$db->lasterror();
|
||||
}
|
||||
}
|
||||
|
||||
if ($error)
|
||||
{
|
||||
$objectresp = array('result'=>array('result_code' => $errorcode, 'result_label' => $errorlabel));
|
||||
}
|
||||
|
||||
return $objectresp;
|
||||
}
|
||||
|
||||
// Return the results.
|
||||
$server->service($HTTP_RAW_POST_DATA);
|
||||
|
||||
?>
|
||||
Loading…
Reference in New Issue
Block a user