28 require 
'../../main.inc.php';
 
   29 require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
 
   31 $langs->load(
"admin");
 
   63 $linkback = 
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
 
   65 print 
load_fiche_titre($langs->trans(
"WebServicesSetup"), $linkback, 
'title_setup');
 
   67 print 
'<span class="opacitymedium">'.$langs->trans(
"WebServicesDesc").
"</span><br>\n";
 
   70 print 
'<form name="agendasetupform" action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
 
   71 print 
'<input type="hidden" name="token" value="'.newToken().
'">';
 
   72 print 
'<input type="hidden" name="action" value="save">';
 
   74 print 
'<table class="noborder centpercent">';
 
   76 print 
'<tr class="liste_titre">';
 
   77 print 
"<td>".$langs->trans(
"Parameter").
"</td>";
 
   78 print 
"<td>".$langs->trans(
"Value").
"</td>";
 
   80 print 
"<td> </td>";
 
   83 print 
'<tr class="oddeven">';
 
   84 print 
'<td class="fieldrequired">'.$langs->trans(
"KeyForWebServicesAccess").
'</td>';
 
   85 print 
'<td><input type="text" class="flat" id="WEBSERVICES_KEY" name="WEBSERVICES_KEY" value="'.(GETPOST(
'WEBSERVICES_KEY') ?
GETPOST(
'WEBSERVICES_KEY') : (!empty($conf->global->WEBSERVICES_KEY) ? $conf->global->WEBSERVICES_KEY : 
'')).
'" size="40">';
 
   86 if (!empty($conf->use_javascript_ajax)) {
 
   87   print 
' '.img_picto($langs->trans(
'Generate'), 
'refresh', 
'id="generate_token" class="linkobject"');
 
   90 print 
'<td> </td>';
 
   95 print 
$form->buttonsSaveCancel(
"Save", 
'');
 
  102 $webservices = array(
 
  104     'thirdparty'    => 
'isModEnabled("societe")',
 
  105     'contact'     => 
'isModEnabled("societe")',
 
  106     'productorservice'  => 
'(isModEnabled("product") || isModEnabled("service"))',
 
  107     'order'       => 
'isModEnabled("commande")',
 
  108     'invoice'     => 
'isModEnabled("facture")',
 
  109     'supplier_invoice'  => 
'isModEnabled("fournisseur")',
 
  110     'actioncomm'    => 
'isModEnabled("agenda")',
 
  111     'category'      => 
'isModEnabled("categorie")',
 
  112     'project'     => 
'isModEnabled("project")',
 
  118 print 
'<u>'.$langs->trans(
"WSDLCanBeDownloadedHere").
':</u><br>';
 
  119 foreach ($webservices as $name => $right) {
 
  120   if (!empty($right) && !
verifCond($right)) {
 
  123   $url = DOL_MAIN_URL_ROOT.
'/webservices/server_'.$name.
'.php?wsdl';
 
  124   print 
img_picto(
'', 
'globe').
' <a href="'.$url.
'" target="_blank" rel="noopener noreferrer">'.$url.
"</a><br>\n";
 
  130 print 
'<u>'.$langs->trans(
"EndPointIs").
':</u><br>';
 
  131 foreach ($webservices as $name => $right) {
 
  132   if (!empty($right) && !
verifCond($right)) {
 
  135   $url = DOL_MAIN_URL_ROOT.
'/webservices/server_'.$name.
'.php';
 
  136   print 
img_picto(
'', 
'globe').
' <a href="'.$url.
'" target="_blank" rel="noopener noreferrer">'.$url.
"</a><br>\n";
 
  142 print $langs->trans(
"OnlyActiveElementsAreShown", DOL_URL_ROOT.
'/admin/modules.php');
 
  144 $constname = 
'WEBSERVICES_KEY';
 
dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $note='', $entity=1)
Insert a parameter (key,value) into database (delete old key then insert it again).
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
verifCond($strToEvaluate)
Verify if condition in string is ok or not.
if(!defined('NOTOKENRENEWAL')) if(!defined('NOLOGIN')) if(!defined('NOCSRFCHECK')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) if(!defined('NOIPCHECK')) if(!defined('NOBROWSERNOTIF')) llxHeader()
Header empty.
dolJSToSetRandomPassword($htmlname, $htmlnameofbutton='generate_token')
Ouput javacript to autoset a generated password using default module into a HTML element.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.