26 require
'../main.inc.php';
27 require_once DOL_DOCUMENT_ROOT.
"/core/lib/admin.lib.php";
28 require_once DOL_DOCUMENT_ROOT.
"/ticket/class/ticket.class.php";
29 require_once DOL_DOCUMENT_ROOT.
"/core/lib/ticket.lib.php";
32 $langs->loadLangs(array(
"admin",
"ticket"));
40 $value =
GETPOST(
'value',
'alpha');
41 $action =
GETPOST(
'action',
'aZ09');
42 $label =
GETPOST(
'label',
'alpha');
43 $scandir =
GETPOST(
'scandir',
'alpha');
53 if ($action ==
'setTICKET_ENABLE_PUBLIC_INTERFACE') {
55 $res =
dolibarr_set_const($db,
'TICKET_ENABLE_PUBLIC_INTERFACE', 1,
'chaine', 0,
'', $conf->entity);
57 $res =
dolibarr_set_const($db,
'TICKET_ENABLE_PUBLIC_INTERFACE', 0,
'chaine', 0,
'', $conf->entity);
61 $errors[] = $db->lasterror();
63 } elseif ($action ==
'setvar') {
64 include_once DOL_DOCUMENT_ROOT.
"/core/lib/files.lib.php";
67 $param_enable_public_interface =
GETPOST(
'TICKET_ENABLE_PUBLIC_INTERFACE',
'alpha');
68 $res =
dolibarr_set_const($db,
'TICKET_ENABLE_PUBLIC_INTERFACE', $param_enable_public_interface,
'chaine', 0,
'', $conf->entity);
71 $errors[] = $db->lasterror();
76 $param_disable_email =
GETPOST(
'TICKET_DISABLE_CUSTOMER_MAILS',
'alpha');
77 $res =
dolibarr_set_const($db,
'TICKET_DISABLE_CUSTOMER_MAILS', $param_disable_email,
'chaine', 0,
'', $conf->entity);
80 $errors[] = $db->lasterror();
85 $param_show_module_logo =
GETPOST(
'TICKET_SHOW_COMPANY_LOGO',
'alpha');
86 $res =
dolibarr_set_const($db,
'TICKET_SHOW_COMPANY_LOGO', $param_show_module_logo,
'chaine', 0,
'', $conf->entity);
89 $errors[] = $db->lasterror();
93 $topic_interface =
GETPOST(
'TICKET_PUBLIC_INTERFACE_TOPIC',
'alphanohtml');
94 if (!empty($topic_interface)) {
95 $res =
dolibarr_set_const($db,
'TICKET_PUBLIC_INTERFACE_TOPIC', $topic_interface,
'chaine', 0,
'', $conf->entity);
97 $res =
dolibarr_set_const($db,
'TICKET_PUBLIC_INTERFACE_TOPIC',
'',
'chaine', 0,
'', $conf->entity);
101 $errors[] = $db->lasterror();
104 $text_home =
GETPOST(
'TICKET_PUBLIC_TEXT_HOME',
'restricthtml');
106 $res =
dolibarr_set_const($db,
'TICKET_PUBLIC_TEXT_HOME', $text_home,
'chaine', 0,
'', $conf->entity);
108 $res =
dolibarr_set_const($db,
'TICKET_PUBLIC_TEXT_HOME', $langs->trans(
'TicketPublicInterfaceTextHome'),
'chaine', 0,
'', $conf->entity);
112 $errors[] = $db->lasterror();
115 $text_help =
GETPOST(
'TICKET_PUBLIC_TEXT_HELP_MESSAGE',
'restricthtml');
116 if (!empty($text_help)) {
117 $res =
dolibarr_set_const($db,
'TICKET_PUBLIC_TEXT_HELP_MESSAGE', $text_help,
'chaine', 0,
'', $conf->entity);
119 $res =
dolibarr_set_const($db,
'TICKET_PUBLIC_TEXT_HELP_MESSAGE', $langs->trans(
'TicketPublicPleaseBeAccuratelyDescribe'),
'chaine', 0,
'', $conf->entity);
123 $errors[] = $db->lasterror();
126 $mail_new_ticket =
GETPOST(
'TICKET_MESSAGE_MAIL_NEW',
'restricthtml');
127 if (!empty($mail_new_ticket)) {
128 $res =
dolibarr_set_const($db,
'TICKET_MESSAGE_MAIL_NEW', $mail_new_ticket,
'chaine', 0,
'', $conf->entity);
130 $res =
dolibarr_set_const($db,
'TICKET_MESSAGE_MAIL_NEW', $langs->trans(
'TicketMessageMailNewText'),
'chaine', 0,
'', $conf->entity);
134 $errors[] = $db->lasterror();
137 $url_interface =
GETPOST(
'TICKET_URL_PUBLIC_INTERFACE',
'alpha');
138 if (!empty($url_interface)) {
139 $res =
dolibarr_set_const($db,
'TICKET_URL_PUBLIC_INTERFACE', $url_interface,
'chaine', 0,
'', $conf->entity);
141 $res =
dolibarr_set_const($db,
'TICKET_URL_PUBLIC_INTERFACE',
'',
'chaine', 0,
'', $conf->entity);
145 $errors[] = $db->lasterror();
148 $param_public_notification_new_message_default_email =
GETPOST(
'TICKET_PUBLIC_NOTIFICATION_NEW_MESSAGE_DEFAULT_EMAIL',
'alpha');
149 $res =
dolibarr_set_const($db,
'TICKET_PUBLIC_NOTIFICATION_NEW_MESSAGE_DEFAULT_EMAIL', $param_public_notification_new_message_default_email,
'chaine', 0,
'', $conf->entity);
152 $errors[] = $db->lasterror();
156 if ($conf->global->MAIN_FEATURES_LEVEL >= 2 && empty($conf->use_javascript_ajax)) {
157 $param_notification_also_main_addressemail =
GETPOST(
'TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS',
'alpha');
158 $res =
dolibarr_set_const($db,
'TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS', $param_notification_also_main_addressemail,
'chaine', 0,
'', $conf->entity);
161 $errors[] = $db->lasterror();
164 } elseif (preg_match(
'/set_(.*)/', $action, $reg)) {
167 if ($code ==
'TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS' && $conf->global->MAIN_FEATURES_LEVEL >= 2) {
168 $param_notification_also_main_addressemail =
GETPOST(
'TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS',
'alpha');
169 $res =
dolibarr_set_const($db,
'TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS', $param_notification_also_main_addressemail,
'chaine', 0,
'', $conf->entity);
179 if ($code ==
'TICKET_EMAIL_MUST_EXISTS') {
180 $res =
dolibarr_del_const($db,
'TICKET_CREATE_THIRD_PARTY_WITH_CONTACT_IF_NOT_EXIST', $conf->entity);
183 $errors[] = $db->lasterror();
185 } elseif ($code ==
'TICKET_CREATE_THIRD_PARTY_WITH_CONTACT_IF_NOT_EXIST') {
189 $errors[] = $db->lasterror();
194 } elseif (preg_match(
'/del_(.*)/', $action, $reg)) {
199 $errors[] = $db->lasterror();
207 header(
"Location: " . $_SERVER[
'PHP_SELF']);
220 $dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
225 $page_name =
"TicketSetup";
229 $linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
231 print
load_fiche_titre($langs->trans($page_name), $linkback,
'title_setup');
236 print
dol_get_fiche_head($head,
'public', $langs->trans(
"Module56000Name"), -1,
"ticket");
242 $enabledisablehtml = $langs->trans(
"TicketsActivatePublicInterface").
' ';
243 if (empty($conf->global->TICKET_ENABLE_PUBLIC_INTERFACE)) {
245 $enabledisablehtml .=
'<a class="reposition valignmiddle" href="'.$_SERVER[
"PHP_SELF"].
'?action=setTICKET_ENABLE_PUBLIC_INTERFACE&token='.
newToken().
'&value=1'.$param.
'">';
246 $enabledisablehtml .=
img_picto($langs->trans(
"Disabled"),
'switch_off');
247 $enabledisablehtml .=
'</a>';
250 $enabledisablehtml .=
'<a class="reposition valignmiddle" href="'.$_SERVER[
"PHP_SELF"].
'?action=setTICKET_ENABLE_PUBLIC_INTERFACE&token='.
newToken().
'&value=0'.$param.
'">';
251 $enabledisablehtml .=
img_picto($langs->trans(
"Activated"),
'switch_on');
252 $enabledisablehtml .=
'</a>';
254 print $enabledisablehtml;
255 print
'<input type="hidden" id="TICKET_ENABLE_PUBLIC_INTERFACE" name="TICKET_ENABLE_PUBLIC_INTERFACE" value="'.(empty($conf->global->TICKET_ENABLE_PUBLIC_INTERFACE) ? 0 : 1).
'">';
261 if (!empty($conf->global->TICKET_ENABLE_PUBLIC_INTERFACE)) {
266 $urlwithouturlroot = preg_replace(
'/'.preg_quote(DOL_URL_ROOT,
'/').
'$/i',
'', trim($dolibarr_main_url_root));
267 $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT;
270 print
'<span class="opacitymedium">'.$langs->trans(
"TicketPublicAccess").
'</span> :<br>';
271 print
'<div class="urllink">';
272 print
'<input type="text" id="publicurlmember" class="quatrevingtpercentminusx" value="'.$urlwithroot.
'/public/ticket/index.php?entity='.$conf->entity.
'">';
273 print
'<a target="_blank" rel="noopener noreferrer" href="'.$urlwithroot.
'/public/ticket/index.php?entity='.$conf->entity.
'">'.
img_picto(
'',
'globe',
'class="paddingleft"').
'</a>';
281 print
'<form method="post" action="'.$_SERVER[
'PHP_SELF'].
'" enctype="multipart/form-data" >';
282 print
'<input type="hidden" name="token" value="'.newToken().
'">';
283 print
'<input type="hidden" name="action" value="setvar">';
285 print
'<div class="div-table-responsive-no-min">';
286 print
'<table class="noborder centpercent">';
287 print
'<tr class="liste_titre"><td>'.$langs->trans(
"Parameters").
'</td>';
288 print
'<td class="left">';
290 print
'<td class="center width75">';
295 print
'<tr class="oddeven">';
296 print
'<td>'.$langs->trans(
"TicketUseCaptchaCode").
'</td>';
297 print
'<td class="left">';
298 if (function_exists(
"imagecreatefrompng")) {
299 if (!empty($conf->use_javascript_ajax)) {
302 if (empty($conf->global->MAIN_SECURITY_ENABLECAPTCHA_TICKET)) {
303 print
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=set_MAIN_SECURITY_ENABLECAPTCHA_TICKET&token='.
newToken().
'">'.
img_picto($langs->trans(
"Disabled"),
'off').
'</a>';
305 print
'<a href="'.$_SERVER[
'PHP_SELF'].
'?action=del_MAIN_SECURITY_ENABLECAPTCHA_TICKET&token='.
newToken().
'">'.
img_picto($langs->trans(
"Enabled"),
'on').
'</a>';
309 $desc =
$form->textwithpicto(
'', $langs->transnoentities(
"EnableGDLibraryDesc"), 1,
'warning');
313 print
'<td class="center width75">';
314 print
$form->textwithpicto(
'', $langs->trans(
"TicketUseCaptchaCodeHelp"), 1,
'help');
319 print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketsEmailMustExist").
'</td>';
320 print
'<td class="left">';
322 print
'<a href="' . $_SERVER[
'PHP_SELF'] .
'?action=set_TICKET_EMAIL_MUST_EXISTS&token='.newToken().
'">' .
img_picto($langs->trans(
'Disabled'),
'switch_off') .
'</a>';
324 print
'<a href="' . $_SERVER[
'PHP_SELF'] .
'?action=del_TICKET_EMAIL_MUST_EXISTS&token='.newToken().
'">' .
img_picto($langs->trans(
'Enabled'),
'switch_on') .
'</a>';
327 print
'<td class="center width75">';
328 print
$form->textwithpicto(
'', $langs->trans(
"TicketsEmailMustExistHelp"), 1,
'help');
333 print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketCreateThirdPartyWithContactIfNotExist").
'</td>';
334 print
'<td class="left">';
335 if (empty(
getDolGlobalInt(
'TICKET_CREATE_THIRD_PARTY_WITH_CONTACT_IF_NOT_EXIST'))) {
336 print
'<a href="' . $_SERVER[
'PHP_SELF'] .
'?action=set_TICKET_CREATE_THIRD_PARTY_WITH_CONTACT_IF_NOT_EXIST&token='.newToken().
'">' .
img_picto($langs->trans(
'Disabled'),
'switch_off') .
'</a>';
338 print
'<a href="' . $_SERVER[
'PHP_SELF'] .
'?action=del_TICKET_CREATE_THIRD_PARTY_WITH_CONTACT_IF_NOT_EXIST&token='.newToken().
'">' .
img_picto($langs->trans(
'Enabled'),
'switch_on') .
'</a>';
341 print
'<td class="center width75">';
342 print
$form->textwithpicto(
'', $langs->trans(
"TicketCreateThirdPartyWithContactIfNotExistHelp"), 1,
'help');
365 print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketsShowCompanyLogo").
'</td>';
366 print
'<td class="left">';
367 if ($conf->use_javascript_ajax) {
370 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
371 print
$form->selectarray(
"TICKET_SHOW_COMPANY_LOGO", $arrval, $conf->global->TICKET_SHOW_COMPANY_LOGO);
374 print
'<td class="center width75">';
375 print
$form->textwithpicto(
'', $langs->trans(
"TicketsShowCompanyLogoHelp"), 1,
'help');
380 if ($conf->global->MAIN_FEATURES_LEVEL >= 2) {
381 print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketsEmailAlsoSendToMainAddress").
'</td>';
382 print
'<td class="left">';
383 if ($conf->use_javascript_ajax) {
386 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
387 print
$form->selectarray(
"TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS", $arrval, $conf->global->TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS);
390 print
'<td class="center width75">';
391 print
$form->textwithpicto(
'', $langs->trans(
"TicketsEmailAlsoSendToMainAddressHelp", $langs->transnoentitiesnoconv(
"TicketEmailNotificationTo").
' ('.$langs->transnoentitiesnoconv(
"Creation").
')', $langs->trans(
"Settings")), 1,
'help');
396 if (!$conf->use_javascript_ajax) {
397 print
'<tr class="impair"><td colspan="3" align="center"><input type="submit" class="button button-save" value="'.$langs->trans(
"Save").
'"></td>';
401 if (empty($conf->global->FCKEDITOR_ENABLE_MAIL)) {
403 print
'<td colspan="3"><div class="info">'.$langs->trans(
"TicketCkEditorEmailNotActivated").
'</div></td>';
409 print
'<tr><td>'.$langs->trans(
"TicketPublicInterfaceTopicLabelAdmin").
'</label>';
411 print
'<input type="text" name="TICKET_PUBLIC_INTERFACE_TOPIC" value="'.$url_interface.
'" size="40" ></td>';
413 print
'<td class="center width75">';
414 print
$form->textwithpicto(
'', $langs->trans(
"TicketPublicInterfaceTopicHelp"), 1,
'help');
418 $public_text_home =
getDolGlobalString(
'TICKET_PUBLIC_TEXT_HOME',
'<span class="opacitymedium">'.$langs->trans(
"TicketPublicDesc").
'</span>');
419 print
'<tr><td>'.$langs->trans(
"TicketPublicInterfaceTextHomeLabelAdmin").
'</label>';
421 require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
422 $doleditor =
new DolEditor(
'TICKET_PUBLIC_TEXT_HOME', $public_text_home,
'100%', 180,
'dolibarr_notes',
'',
false,
true,
getDolGlobalInt(
'FCKEDITOR_ENABLE_TICKET'), ROWS_2, 70);
423 $doleditor->Create();
425 print
'<td class="center">';
426 print
$form->textwithpicto(
'', $langs->trans(
"TicketPublicInterfaceTextHomeHelpAdmin"), 1,
'help');
430 $public_text_help_message =
getDolGlobalString(
"TICKET_PUBLIC_TEXT_HELP_MESSAGE", $langs->trans(
'TicketPublicPleaseBeAccuratelyDescribe'));
431 print
'<tr><td>'.$langs->trans(
"TicketPublicInterfaceTextHelpMessageLabelAdmin").
'</label>';
433 require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
434 $doleditor =
new DolEditor(
'TICKET_PUBLIC_TEXT_HELP_MESSAGE', $public_text_help_message,
'100%', 180,
'dolibarr_notes',
'',
false,
true,
getDolGlobalInt(
'FCKEDITOR_ENABLE_TICKET'), ROWS_2, 70);
435 $doleditor->Create();
437 print
'<td class="center">';
438 print
$form->textwithpicto(
'', $langs->trans(
"TicketPublicInterfaceTextHelpMessageHelpAdmin"), 1,
'help');
443 print
'<tr><td>'.$langs->trans(
"TicketUrlPublicInterfaceLabelAdmin").
'</label>';
445 print
'<input type="text" class="minwidth500" name="TICKET_URL_PUBLIC_INTERFACE" value="'.$url_interface.
'"></td>';
447 print
'<td class="center">';
448 print
$form->textwithpicto(
'', $langs->trans(
"TicketUrlPublicInterfaceHelpAdmin"), 1,
'help');
457 print
'<div class="div-table-responsive-no-min">';
458 print
'<table class="noborder centpercent">';
461 print
'<tr class="pair"><td>';
462 print
$form->textwithpicto($langs->trans(
"TicketsDisableCustomerEmail"), $langs->trans(
"TicketsDisableEmailHelp"), 1,
'help');
464 print
'<td class="left">';
465 if ($conf->use_javascript_ajax) {
468 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
469 print
$form->selectarray(
"TICKET_DISABLE_CUSTOMER_MAILS", $arrval, $conf->global->TICKET_DISABLE_CUSTOMER_MAILS);
475 $mail_mesg_new =
getDolGlobalString(
"TICKET_MESSAGE_MAIL_NEW", $langs->trans(
'TicketNewEmailBody'));
477 print
$form->textwithpicto($langs->trans(
"TicketNewEmailBodyLabel"), $langs->trans(
"TicketNewEmailBodyHelp"), 1,
'help');
480 require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
481 $doleditor =
new DolEditor(
'TICKET_MESSAGE_MAIL_NEW', $mail_mesg_new,
'100%', 120,
'dolibarr_mailings',
'',
false,
true,
getDolGlobalInt(
'FCKEDITOR_ENABLE_MAIL'), ROWS_2, 70);
482 $doleditor->Create();
487 print
'<tr class="pair"><td>';
488 print
$form->textwithpicto($langs->trans(
"TicketsPublicNotificationNewMessage"), $langs->trans(
"TicketsPublicNotificationNewMessageHelp"), 1,
'help');
490 print
'<td class="left">';
491 if ($conf->use_javascript_ajax) {
494 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
495 print
$form->selectarray(
"TICKET_PUBLIC_NOTIFICATION_NEW_MESSAGE_ENABLED", $arrval,
getDolGlobalString(
"TICKET_PUBLIC_NOTIFICATION_NEW_MESSAGE_ENABLED"));
502 print
$form->textwithpicto($langs->trans(
"TicketPublicNotificationNewMessageDefaultEmail"), $langs->trans(
"TicketPublicNotificationNewMessageDefaultEmailHelp"), 1,
'help');
504 print
'<input type="text" name="TICKET_PUBLIC_NOTIFICATION_NEW_MESSAGE_DEFAULT_EMAIL" value="'.getDolGlobalString(
"TICKET_PUBLIC_NOTIFICATION_NEW_MESSAGE_DEFAULT_EMAIL").
'" size="40" ></td>';
511 print
$form->buttonsSaveCancel(
"Save",
'');
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
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.
ajax_constantonoff($code, $input=array(), $entity=null, $revertonoff=0, $strict=0, $forcereload=0, $marginleftonlyshort=2, $forcenoajax=0, $setzeroinsteadofdel=0, $suffix='', $mode='', $morecss='')
On/off button for constant.
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage a WYSIWYG editor.
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.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
getDolGlobalInt($key, $default=0)
Return dolibarr global constant int value.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
ajax_autoselect($htmlname, $addlink='', $textonlink='Link')
Make content of an input box selected when we click into input field.
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.
setEventMessage($mesgs, $style='mesgs')
Set event message in dol_events session object.
if(!function_exists('utf8_encode')) if(!function_exists('utf8_decode')) getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
ticketAdminPrepareHead()
Build tabs for admin page.