26require
'../main.inc.php';
27require_once DOL_DOCUMENT_ROOT.
"/core/lib/admin.lib.php";
28require_once DOL_DOCUMENT_ROOT.
'/webhook/lib/webhook.lib.php';
31$langs->loadLangs(array(
"admin",
"webhook"));
34$hookmanager->initHooks(array(
'webhooksetup',
'globalsetup'));
42$action =
GETPOST(
'action',
'aZ09');
43$backtopage =
GETPOST(
'backtopage',
'alpha');
44$modulepart =
GETPOST(
'modulepart',
'aZ09');
46$value =
GETPOST(
'value',
'alpha');
47$label =
GETPOST(
'label',
'alpha');
48$scandir =
GETPOST(
'scan_dir',
'alpha');
58if (!class_exists(
'FormSetup')) {
59 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formsetup.class.php';
65$setupnotempty = count($formSetup->items);
68$dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
75include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
77if ($action ==
'updateMask') {
78 $maskconst =
GETPOST(
'maskconst',
'aZ09');
79 $maskvalue =
GETPOST(
'maskvalue',
'alpha');
81 if ($maskconst && preg_match(
'/_MASK$/', $maskconst)) {
82 $res =
dolibarr_set_const($db, $maskconst, $maskvalue,
'chaine', 0,
'', $conf->entity);
93} elseif ($action ==
'setmod') {
95 $tmpobjectkey =
GETPOST(
'object',
'aZ09');
96 if (!empty($tmpobjectkey)) {
97 $constforval =
'WEBHOOK_'.strtoupper($tmpobjectkey).
"_ADDON";
100} elseif ($action ==
'set') {
103} elseif ($action ==
'del') {
106 $tmpobjectkey =
GETPOST(
'object',
'aZ09');
107 if (!empty($tmpobjectkey)) {
108 $constforval =
'WEBHOOK_'.strtoupper($tmpobjectkey).
'_ADDON_PDF';
114} elseif ($action ==
'setdoc') {
116 $tmpobjectkey =
GETPOST(
'object',
'aZ09');
117 if (!empty($tmpobjectkey)) {
118 $constforval =
'WEBHOOK_'.strtoupper($tmpobjectkey).
'_ADDON_PDF';
122 $conf->global->$constforval = $value;
131} elseif ($action ==
'unsetdoc') {
132 $tmpobjectkey =
GETPOST(
'object',
'aZ09');
133 if (!empty($tmpobjectkey)) {
134 $constforval =
'WEBHOOK_'.strtoupper($tmpobjectkey).
'_ADDON_PDF';
145$form =
new Form($db);
148$page_name =
"WebhookSetup";
150llxHeader(
'', $langs->trans($page_name), $help_url,
'', 0, 0,
'',
'',
'',
'mod-admin page-webhook');
153$linkback =
'<a href="'.($backtopage ? $backtopage : DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1').
'">'.$langs->trans(
"BackToModuleList").
'</a>';
164print
'<span class="opacitymedium">'.$langs->trans(
"WebhookSetupPage", $langs->transnoentitiesnoconv(
"Targets")).
'...</span><br><br>';
167if ($action ==
'edit') {
168 if ($useFormSetup && (
float) DOL_VERSION >= 15) {
169 print $formSetup->generateOutput(
true);
171 print
'<form method="POST" action="'.$_SERVER[
"PHP_SELF"].
'">';
172 print
'<input type="hidden" name="token" value="'.newToken().
'">';
173 print
'<input type="hidden" name="action" value="update">';
175 print
'<table class="noborder centpercent">';
176 print
'<tr class="liste_titre"><td class="titlefield">'.$langs->trans(
"Parameter").
'</td><td>'.$langs->trans(
"Value").
'</td></tr>';
179 foreach ($arrayofparameters as $constname => $val) {
180 if ($val[
'enabled'] == 1) {
182 print
'<tr class="oddeven"><td>';
183 $tooltiphelp = (($langs->trans($constname .
'Tooltip') != $constname .
'Tooltip') ? $langs->trans($constname .
'Tooltip') :
'');
184 print
'<span id="helplink'.$constname.
'" class="spanforparamtooltip">'.$form->textwithpicto($langs->trans($constname), $tooltiphelp, 1,
'info',
'', 0, 3,
'tootips'.$constname).
'</span>';
187 if ($val[
'type'] ==
'textarea') {
188 print
'<textarea class="flat" name="'.$constname.
'" id="'.$constname.
'" cols="50" rows="5" wrap="soft">' .
"\n";
190 print
"</textarea>\n";
191 } elseif ($val[
'type'] ==
'html') {
192 require_once DOL_DOCUMENT_ROOT .
'/core/class/doleditor.class.php';
193 $doleditor =
new DolEditor($constname,
getDolGlobalString($constname),
'', 160,
'dolibarr_notes',
'',
false,
false, isModEnabled(
'fckeditor'), ROWS_5,
'90%');
194 $doleditor->Create();
195 } elseif ($val[
'type'] ==
'yesno') {
197 } elseif (preg_match(
'/emailtemplate:/', $val[
'type'])) {
198 include_once DOL_DOCUMENT_ROOT .
'/core/class/html.formmail.class.php';
201 $tmp = explode(
':', $val[
'type']);
202 $nboftemplates = $formmail->fetchAllEMailTemplate($tmp[1], $user,
null, 1);
204 $arrayofmessagename = array();
205 if (is_array($formmail->lines_model)) {
206 foreach ($formmail->lines_model as $modelmail) {
209 if (!empty($arrayofmessagename[$modelmail->label])) {
210 $moreonlabel =
' <span class="opacitymedium">(' . $langs->trans(
"SeveralLangugeVariatFound") .
')</span>';
213 $arrayofmessagename[$modelmail->id] = $langs->trans(preg_replace(
'/\(|\)/',
'', $modelmail->label)) . $moreonlabel;
216 print $form->selectarray($constname, $arrayofmessagename,
getDolGlobalString($constname),
'None', 0, 0,
'', 0, 0, 0,
'',
'', 1);
217 } elseif (preg_match(
'/category:/', $val[
'type'])) {
218 require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
219 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formother.class.php';
222 $tmp = explode(
':', $val[
'type']);
223 print
img_picto(
'',
'category',
'class="pictofixedwidth"');
224 print $formother->select_categories($tmp[1],
getDolGlobalString($constname), $constname, 0, $langs->trans(
'CustomersProspectsCategoriesShort'));
225 } elseif (preg_match(
'/thirdparty_type/', $val[
'type'])) {
226 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
228 print $formcompany->selectProspectCustomerType(
getDolGlobalString($constname), $constname);
229 } elseif ($val[
'type'] ==
'securekey') {
230 print
'<input required="required" type="text" class="flat" id="'.$constname.
'" name="'.$constname.
'" value="'.(
GETPOST($constname,
'alpha') ?
GETPOST($constname,
'alpha') :
getDolGlobalString($constname)).
'" size="40">';
231 if (!empty($conf->use_javascript_ajax)) {
232 print
' '.img_picto($langs->trans(
'Generate'),
'refresh',
'id="generate_token'.$constname.
'" class="linkobject"');
236 include_once DOL_DOCUMENT_ROOT.
'/core/lib/security2.lib.php';
238 } elseif ($val[
'type'] ==
'product') {
239 if (isModEnabled(
"product") || isModEnabled(
"service")) {
241 $form->select_produits($selected, $constname,
'', 0);
244 print
'<input name="'.$constname.
'" class="flat '.(empty($val[
'css']) ?
'minwidth200' : $val[
'css']).
'" value="'.
getDolGlobalString($constname).
'">';
251 print
'<br><div class="center">';
252 print
'<input class="button button-save" type="submit" value="'.$langs->trans(
"Save").
'">';
260 if ($useFormSetup && (
float) DOL_VERSION >= 15) {
261 if (!empty($formSetup->items)) {
262 print $formSetup->generateOutput();
265 if (!empty($arrayofparameters)) {
266 print
'<table class="noborder centpercent">';
267 print
'<tr class="liste_titre"><td class="titlefield">'.$langs->trans(
"Parameter").
'</td><td>'.$langs->trans(
"Value").
'</td></tr>';
269 foreach ($arrayofparameters as $constname => $val) {
270 if ($val[
'enabled'] == 1) {
272 print
'<tr class="oddeven"><td>';
273 $tooltiphelp = (($langs->trans($constname .
'Tooltip') != $constname .
'Tooltip') ? $langs->trans($constname .
'Tooltip') :
'');
274 print $form->textwithpicto($langs->trans($constname), $tooltiphelp);
277 if ($val[
'type'] ==
'textarea') {
279 } elseif ($val[
'type'] ==
'html') {
281 } elseif ($val[
'type'] ==
'yesno') {
282 print ajax_constantonoff($constname);
283 } elseif (preg_match(
'/emailtemplate:/', $val[
'type'])) {
284 include_once DOL_DOCUMENT_ROOT .
'/core/class/html.formmail.class.php';
287 $tmp = explode(
':', $val[
'type']);
289 $template = $formmail->getEMailTemplate($db, $tmp[1], $user, $langs,
getDolGlobalString($constname));
293 print $langs->trans($template->label);
294 } elseif (preg_match(
'/category:/', $val[
'type'])) {
299 } elseif ($result > 0) {
300 $ways = $c->print_all_ways(
' >> ',
'none', 0, 1);
302 foreach ($ways as $way) {
303 $toprint[] =
'<li class="select2-search-choice-dolibarr noborderoncategories"' . ($c->color ?
' style="background: #' . $c->color .
';"' :
' style="background: #bbb"') .
'>' . $way .
'</li>';
305 print
'<div class="select2-container-multi-dolibarr" style="width: 90%;"><ul class="select2-choices-dolibarr">' . implode(
' ', $toprint) .
'</ul></div>';
307 } elseif (preg_match(
'/thirdparty_type/', $val[
'type'])) {
309 print $langs->trans(
"Prospect");
311 print $langs->trans(
"ProspectCustomer");
313 print $langs->trans(
"Customer");
315 print $langs->trans(
"NorProspectNorCustomer");
317 } elseif ($val[
'type'] ==
'product') {
322 } elseif ($resprod < 0) {
336 if ($setupnotempty) {
337 print
'<div class="tabsAction">';
338 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.
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.