27require
'../main.inc.php';
28require_once DOL_DOCUMENT_ROOT.
"/core/lib/admin.lib.php";
29require_once DOL_DOCUMENT_ROOT.
'/webhook/lib/webhook.lib.php';
40$langs->loadLangs(array(
"admin",
"webhook"));
43$hookmanager->initHooks(array(
'webhooksetup',
'globalsetup'));
51$action =
GETPOST(
'action',
'aZ09');
52$backtopage =
GETPOST(
'backtopage',
'alpha');
53$modulepart =
GETPOST(
'modulepart',
'aZ09');
55$value =
GETPOST(
'value',
'alpha');
56$label =
GETPOST(
'label',
'alpha');
57$scandir =
GETPOST(
'scan_dir',
'alpha');
67if (!class_exists(
'FormSetup')) {
68 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formsetup.class.php';
74$setupnotempty = count($formSetup->items);
77$dirmodels = array_merge(array(
'/'), (array)
$conf->modules_parts[
'models']);
84include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
86if ($action ==
'updateMask') {
87 $maskconst =
GETPOST(
'maskconst',
'aZ09');
88 $maskvalue =
GETPOST(
'maskvalue',
'alpha');
90 if ($maskconst && preg_match(
'/_MASK$/', $maskconst)) {
102} elseif ($action ==
'setmod') {
104 $tmpobjectkey =
GETPOST(
'object',
'aZ09');
105 if (!empty($tmpobjectkey)) {
106 $constforval =
'WEBHOOK_'.strtoupper($tmpobjectkey).
"_ADDON";
109} elseif ($action ==
'set') {
112} elseif ($action ==
'del') {
115 $tmpobjectkey =
GETPOST(
'object',
'aZ09');
116 if (!empty($tmpobjectkey)) {
117 $constforval =
'WEBHOOK_'.strtoupper($tmpobjectkey).
'_ADDON_PDF';
123} elseif ($action ==
'setdoc') {
125 $tmpobjectkey =
GETPOST(
'object',
'aZ09');
126 if (!empty($tmpobjectkey)) {
127 $constforval =
'WEBHOOK_'.strtoupper($tmpobjectkey).
'_ADDON_PDF';
131 $conf->global->$constforval = $value;
140} elseif ($action ==
'unsetdoc') {
141 $tmpobjectkey =
GETPOST(
'object',
'aZ09');
142 if (!empty($tmpobjectkey)) {
143 $constforval =
'WEBHOOK_'.strtoupper($tmpobjectkey).
'_ADDON_PDF';
154$form =
new Form($db);
157$page_name =
"WebhookSetup";
159llxHeader(
'', $langs->trans($page_name), $help_url,
'', 0, 0,
'',
'',
'',
'mod-admin page-webhook');
162$linkback =
'<a href="'.($backtopage ? $backtopage : DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1').
'">'.$langs->trans(
"BackToModuleList").
'</a>';
173print
'<span class="opacitymedium">'.$langs->trans(
"WebhookSetupPage", $langs->transnoentitiesnoconv(
"Targets")).
'...</span><br><br>';
176if ($action ==
'edit') {
177 if ($useFormSetup && (
float) DOL_VERSION >= 15) {
178 print $formSetup->generateOutput(
true);
180 print
'<form method="POST" action="'.$_SERVER[
"PHP_SELF"].
'">';
181 print
'<input type="hidden" name="token" value="'.newToken().
'">';
182 print
'<input type="hidden" name="action" value="update">';
184 print
'<table class="noborder centpercent">';
185 print
'<tr class="liste_titre"><td class="titlefield">'.$langs->trans(
"Parameter").
'</td><td>'.$langs->trans(
"Value").
'</td></tr>';
188 foreach ($arrayofparameters as $constname => $val) {
189 if ($val[
'enabled'] == 1) {
191 print
'<tr class="oddeven"><td>';
192 $tooltiphelp = (($langs->trans($constname .
'Tooltip') != $constname .
'Tooltip') ? $langs->trans($constname .
'Tooltip') :
'');
193 print
'<span id="helplink'.$constname.
'" class="spanforparamtooltip">'.$form->textwithpicto($langs->trans($constname), $tooltiphelp, 1,
'info',
'', 0, 3,
'tootips'.$constname).
'</span>';
196 if ($val[
'type'] ==
'textarea') {
197 print
'<textarea class="flat" name="'.$constname.
'" id="'.$constname.
'" cols="50" rows="5" wrap="soft">' .
"\n";
199 print
"</textarea>\n";
200 } elseif ($val[
'type'] ==
'html') {
201 require_once DOL_DOCUMENT_ROOT .
'/core/class/doleditor.class.php';
202 $doleditor =
new DolEditor($constname,
getDolGlobalString($constname),
'', 160,
'dolibarr_notes',
'',
false,
false, isModEnabled(
'fckeditor'), ROWS_5,
'90%');
203 $doleditor->Create();
204 } elseif ($val[
'type'] ==
'yesno') {
206 } elseif (preg_match(
'/emailtemplate:/', $val[
'type'])) {
207 include_once DOL_DOCUMENT_ROOT .
'/core/class/html.formmail.class.php';
210 $tmp = explode(
':', $val[
'type']);
211 $nboftemplates = $formmail->fetchAllEMailTemplate($tmp[1], $user,
null, 1);
213 $arrayofmessagename = array();
214 if (is_array($formmail->lines_model)) {
215 foreach ($formmail->lines_model as $modelmail) {
218 if (!empty($arrayofmessagename[$modelmail->label])) {
219 $moreonlabel =
' <span class="opacitymedium">(' . $langs->trans(
"SeveralLangugeVariatFound") .
')</span>';
222 $arrayofmessagename[$modelmail->id] = $langs->trans(preg_replace(
'/\(|\)/',
'', $modelmail->label)) . $moreonlabel;
225 print $form->selectarray($constname, $arrayofmessagename,
getDolGlobalString($constname),
'None', 0, 0,
'', 0, 0, 0,
'',
'', 1);
226 } elseif (preg_match(
'/category:/', $val[
'type'])) {
227 require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
228 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formother.class.php';
231 $tmp = explode(
':', $val[
'type']);
232 print
img_picto(
'',
'category',
'class="pictofixedwidth"');
233 print $formother->select_categories($tmp[1],
getDolGlobalString($constname), $constname, 0, $langs->trans(
'CustomersProspectsCategoriesShort'));
234 } elseif (preg_match(
'/thirdparty_type/', $val[
'type'])) {
235 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
237 print $formcompany->selectProspectCustomerType(
getDolGlobalString($constname), $constname);
238 } elseif ($val[
'type'] ==
'securekey') {
239 print
'<input required="required" type="text" class="flat" id="'.$constname.
'" name="'.$constname.
'" value="'.(
GETPOST($constname,
'alpha') ?
GETPOST($constname,
'alpha') :
getDolGlobalString($constname)).
'" size="40">';
240 if (!empty(
$conf->use_javascript_ajax)) {
241 print
' '.img_picto($langs->trans(
'Generate'),
'refresh',
'id="generate_token'.$constname.
'" class="linkobject"');
245 include_once DOL_DOCUMENT_ROOT.
'/core/lib/security2.lib.php';
247 } elseif ($val[
'type'] ==
'product') {
248 if (isModEnabled(
"product") || isModEnabled(
"service")) {
250 $form->select_produits($selected, $constname,
'', 0);
253 print
'<input name="'.$constname.
'" class="flat '.(empty($val[
'css']) ?
'minwidth200' : $val[
'css']).
'" value="'.
getDolGlobalString($constname).
'">';
260 print
'<br><div class="center">';
261 print
'<input class="button button-save" type="submit" value="'.$langs->trans(
"Save").
'">';
269 if ($useFormSetup && (
float) DOL_VERSION >= 15) {
270 if (!empty($formSetup->items)) {
271 print $formSetup->generateOutput();
274 if (!empty($arrayofparameters)) {
275 print
'<table class="noborder centpercent">';
276 print
'<tr class="liste_titre"><td class="titlefield">'.$langs->trans(
"Parameter").
'</td><td>'.$langs->trans(
"Value").
'</td></tr>';
278 foreach ($arrayofparameters as $constname => $val) {
279 if ($val[
'enabled'] == 1) {
281 print
'<tr class="oddeven"><td>';
282 $tooltiphelp = (($langs->trans($constname .
'Tooltip') != $constname .
'Tooltip') ? $langs->trans($constname .
'Tooltip') :
'');
283 print $form->textwithpicto($langs->trans($constname), $tooltiphelp);
286 if ($val[
'type'] ==
'textarea') {
288 } elseif ($val[
'type'] ==
'html') {
290 } elseif ($val[
'type'] ==
'yesno') {
291 print ajax_constantonoff($constname);
292 } elseif (preg_match(
'/emailtemplate:/', $val[
'type'])) {
293 include_once DOL_DOCUMENT_ROOT .
'/core/class/html.formmail.class.php';
296 $tmp = explode(
':', $val[
'type']);
298 $template = $formmail->getEMailTemplate($db, $tmp[1], $user, $langs,
getDolGlobalString($constname));
302 print $langs->trans($template->label);
303 } elseif (preg_match(
'/category:/', $val[
'type'])) {
308 } elseif ($result > 0) {
309 $ways = $c->print_all_ways(
' >> ',
'none', 0, 1);
311 foreach ($ways as $way) {
312 $toprint[] =
'<li class="select2-search-choice-dolibarr noborderoncategories"' . ($c->color ?
' style="background: #' . $c->color .
';"' :
' style="background: #bbb"') .
'>' . $way .
'</li>';
314 print
'<div class="select2-container-multi-dolibarr" style="width: 90%;"><ul class="select2-choices-dolibarr">' . implode(
' ', $toprint) .
'</ul></div>';
316 } elseif (preg_match(
'/thirdparty_type/', $val[
'type'])) {
318 print $langs->trans(
"Prospect");
320 print $langs->trans(
"ProspectCustomer");
322 print $langs->trans(
"Customer");
324 print $langs->trans(
"NorProspectNorCustomer");
326 } elseif ($val[
'type'] ==
'product') {
331 } elseif ($resprod < 0) {
345 if ($setupnotempty) {
346 print
'<div class="tabsAction">';
347 print
'<a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?action=edit&token='.
newToken().
'">'.$langs->trans(
"Modify").
'</a>';
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
addDocumentModel($name, $type, $label='', $description='')
Add document model used by doc generator.
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).
dolibarr_del_const($db, $name, $entity=1)
Delete a constant.
delDocumentModel($name, $type)
Delete document model used by doc generator.
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.
Class to manage categories.
Class to manage a WYSIWYG editor.
Class to manage products or services.
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)
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_nl2br($stringtoencode, $nl2brmode=0, $forxml=false)
Replace CRLF in string with a HTML BR tag.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
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.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
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.
webhookAdminPrepareHead()
Prepare admin pages header.