28require
'../../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
30require_once DOL_DOCUMENT_ROOT.
'/core/lib/security2.lib.php';
62llxHeader(
'',
'',
'',
'', 0, 0,
'',
'',
'',
'mod-webservices page-admin_index');
64$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
66print
load_fiche_titre($langs->trans(
"WebServicesSetup"), $linkback,
'title_setup');
68print
'<span class="opacitymedium">'.$langs->trans(
"WebServicesDesc").
"</span><br>\n";
71print
'<form name="agendasetupform" action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">';
72print
'<input type="hidden" name="token" value="'.newToken().
'">';
73print
'<input type="hidden" name="action" value="save">';
75print
'<table class="noborder centpercent">';
77print
'<tr class="liste_titre">';
78print
"<td>".$langs->trans(
"Parameter").
"</td>";
79print
"<td>".$langs->trans(
"Value").
"</td>";
81print
"<td> </td>";
84print
'<tr class="oddeven">';
85print
'<td class="fieldrequired">'.$langs->trans(
"KeyForWebServicesAccess").
'</td>';
86print
'<td><input type="text" class="flat" id="WEBSERVICES_KEY" name="WEBSERVICES_KEY" value="'.(GETPOST(
'WEBSERVICES_KEY') ?
GETPOST(
'WEBSERVICES_KEY') : (
getDolGlobalString(
'WEBSERVICES_KEY') ? $conf->global->WEBSERVICES_KEY :
'')).
'" size="40">';
87if (!empty($conf->use_javascript_ajax)) {
88 print
' '.img_picto($langs->trans(
'Generate'),
'refresh',
'id="generate_token" class="linkobject"');
91print
'<td> </td>';
96print $form->buttonsSaveCancel(
"Save",
'');
105 'thirdparty' =>
'isModEnabled("societe")',
106 'contact' =>
'isModEnabled("societe")',
107 'productorservice' =>
'(isModEnabled("product") || isModEnabled("service"))',
108 'order' =>
'isModEnabled("order")',
109 'invoice' =>
'isModEnabled("invoice")',
110 'supplier_invoice' =>
'isModEnabled("fournisseur")',
111 'actioncomm' =>
'isModEnabled("agenda")',
112 'category' =>
'isModEnabled("category")',
113 'project' =>
'isModEnabled("project")',
119print
'<u>'.$langs->trans(
"WSDLCanBeDownloadedHere").
':</u><br>';
120foreach ($webservices as $name => $right) {
121 if (!empty($right) && !
verifCond($right)) {
124 $url = DOL_MAIN_URL_ROOT.
'/webservices/server_'.$name.
'.php?wsdl';
125 print
img_picto(
'',
'globe').
' <a href="'.$url.
'" target="_blank" rel="noopener noreferrer">'.$url.
"</a><br>\n";
131print
'<u>'.$langs->trans(
"EndPointIs").
':</u><br>';
132foreach ($webservices as $name => $right) {
133 if (!empty($right) && !
verifCond($right)) {
136 $url = DOL_MAIN_URL_ROOT.
'/webservices/server_'.$name.
'.php';
137 print
img_picto(
'',
'globe').
' <a href="'.$url.
'" target="_blank" rel="noopener noreferrer">'.$url.
"</a><br>\n";
143print $langs->trans(
"OnlyActiveElementsAreShown", DOL_URL_ROOT.
'/admin/modules.php');
145$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(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
verifCond($strToEvaluate, $onlysimplestring='1')
Verify if condition in string is ok or not.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $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.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dolJSToSetRandomPassword($htmlname, $htmlnameofbutton='generate_token', $generic=1)
Output javascript 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.