28require
'../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.
"/core/class/html.formcategory.class.php";
30require_once DOL_DOCUMENT_ROOT.
"/core/lib/admin.lib.php";
31require_once DOL_DOCUMENT_ROOT.
"/core/lib/ticket.lib.php";
32require_once DOL_DOCUMENT_ROOT.
"/ticket/class/ticket.class.php";
35$langs->loadLangs(array(
"admin",
"ticket"));
43$value =
GETPOST(
'value',
'alpha');
44$action =
GETPOST(
'action',
'aZ09');
45$modulepart =
GETPOST(
'modulepart',
'aZ09');
47$label =
GETPOST(
'label',
'alpha');
48$scandir =
GETPOST(
'scandir',
'alpha');
58include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
60if ($action ==
'updateMask') {
61 $maskconstticket =
GETPOST(
'maskconstticket',
'aZ09');
62 $maskticket =
GETPOST(
'maskticket',
'alpha');
64 if ($maskconstticket && preg_match(
'/_MASK$/', $maskconstticket)) {
65 $res =
dolibarr_set_const($db, $maskconstticket, $maskticket,
'chaine', 0,
'', $conf->entity);
77} elseif ($action ==
'set') {
80} elseif ($action ==
'del') {
83 if ($conf->global->TICKET_ADDON_PDF ==
"$value") {
87} elseif (preg_match(
'/set_(.*)/', $action, $reg)) {
89 $value = GETPOSTISSET($code) ?
GETPOST($code,
'int') : 1;
90 if ($code ==
'TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') >= 2) {
91 $param_notification_also_main_addressemail =
GETPOST(
'TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS',
'alpha');
92 $res =
dolibarr_set_const($db,
'TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS', $param_notification_also_main_addressemail,
'chaine', 0,
'', $conf->entity);
102} elseif (preg_match(
'/del_(.*)/', $action, $reg)) {
108} elseif ($action ==
'setdoc') {
110 if (
dolibarr_set_const($db,
"TICKET_ADDON_PDF", $value,
'chaine', 0,
'', $conf->entity)) {
113 $conf->global->TICKET_ADDON_PDF = $value;
121} elseif ($action ==
'setmod') {
126} elseif ($action ==
'setvarworkflow') {
128 if (empty($conf->use_javascript_ajax)) {
129 $param_auto_read =
GETPOST(
'TICKET_AUTO_READ_WHEN_CREATED_FROM_BACKEND',
'alpha');
130 $res =
dolibarr_set_const($db,
'TICKET_AUTO_READ_WHEN_CREATED_FROM_BACKEND', $param_auto_read,
'chaine', 0,
'', $conf->entity);
135 $param_auto_assign =
GETPOST(
'TICKET_AUTO_ASSIGN_USER_CREATE',
'alpha');
136 $res =
dolibarr_set_const($db,
'TICKET_AUTO_ASSIGN_USER_CREATE', $param_auto_assign,
'chaine', 0,
'', $conf->entity);
141 $param_auto_notify_close =
GETPOST(
'TICKET_NOTIFY_AT_CLOSING',
'alpha');
142 $res =
dolibarr_set_const($db,
'TICKET_NOTIFY_AT_CLOSING', $param_auto_notify_close,
'chaine', 0,
'', $conf->entity);
148 $param_limit_view =
GETPOST(
'TICKET_LIMIT_VIEW_ASSIGNED_ONLY',
'alpha');
149 $res =
dolibarr_set_const($db,
'TICKET_LIMIT_VIEW_ASSIGNED_ONLY', $param_limit_view,
'chaine', 0,
'', $conf->entity);
154 if (GETPOSTISSET(
'product_category_id')) {
155 $param_ticket_product_category =
GETPOST(
'product_category_id',
'int');
156 $res =
dolibarr_set_const($db,
'TICKET_PRODUCT_CATEGORY', $param_ticket_product_category,
'chaine', 0,
'', $conf->entity);
162 $param_delay_first_response =
GETPOST(
'delay_first_response',
'int');
163 $res =
dolibarr_set_const($db,
'TICKET_DELAY_BEFORE_FIRST_RESPONSE', $param_delay_first_response,
'chaine', 0,
'', $conf->entity);
168 $param_delay_between_responses =
GETPOST(
'delay_between_responses',
'int');
169 $res =
dolibarr_set_const($db,
'TICKET_DELAY_SINCE_LAST_RESPONSE', $param_delay_between_responses,
'chaine', 0,
'', $conf->entity);
173} elseif ($action ==
'setvar') {
174 include_once DOL_DOCUMENT_ROOT.
"/core/lib/files.lib.php";
176 $notification_email =
GETPOST(
'TICKET_NOTIFICATION_EMAIL_FROM',
'alpha');
177 $notification_email_description =
"Sender of ticket replies sent from Dolibarr";
178 if (!empty($notification_email)) {
179 $res =
dolibarr_set_const($db,
'TICKET_NOTIFICATION_EMAIL_FROM', $notification_email,
'chaine', 0, $notification_email_description, $conf->entity);
181 $res =
dolibarr_set_const($db,
'TICKET_NOTIFICATION_EMAIL_FROM', $conf->global->MAIN_MAIL_EMAIL_FROM,
'chaine', 0, $notification_email_description, $conf->entity);
188 $notification_email_to =
GETPOST(
'TICKET_NOTIFICATION_EMAIL_TO',
'alpha');
189 $notification_email_to_description =
"Notified e-mail for ticket replies sent from Dolibarr";
190 if (!empty($notification_email_to)) {
191 $res =
dolibarr_set_const($db,
'TICKET_NOTIFICATION_EMAIL_TO', $notification_email_to,
'chaine', 0, $notification_email_to_description, $conf->entity);
193 $res =
dolibarr_set_const($db,
'TICKET_NOTIFICATION_EMAIL_TO',
'',
'chaine', 0, $notification_email_to_description, $conf->entity);
199 $mail_intro =
GETPOST(
'TICKET_MESSAGE_MAIL_INTRO',
'restricthtml');
200 $mail_intro_description =
"Introduction text of ticket replies sent from Dolibarr";
201 if (!empty($mail_intro)) {
202 $res =
dolibarr_set_const($db,
'TICKET_MESSAGE_MAIL_INTRO', $mail_intro,
'chaine', 0, $mail_intro_description, $conf->entity);
204 $res =
dolibarr_set_const($db,
'TICKET_MESSAGE_MAIL_INTRO',
'',
'chaine', 0, $mail_intro_description, $conf->entity);
210 $mail_signature =
GETPOST(
'TICKET_MESSAGE_MAIL_SIGNATURE',
'restricthtml');
211 $signature_description =
"Signature of ticket replies sent from Dolibarr";
212 if (!empty($mail_signature)) {
213 $res =
dolibarr_set_const($db,
'TICKET_MESSAGE_MAIL_SIGNATURE', $mail_signature,
'chaine', 0, $signature_description, $conf->entity);
215 $res =
dolibarr_set_const($db,
'TICKET_MESSAGE_MAIL_SIGNATURE',
'',
'chaine', 0, $signature_description, $conf->entity);
222 if (
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') >= 2 && empty($conf->use_javascript_ajax)) {
223 $param_notification_also_main_addressemail =
GETPOST(
'TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS',
'alpha');
224 $res =
dolibarr_set_const($db,
'TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS', $param_notification_also_main_addressemail,
'chaine', 0,
'', $conf->entity);
236$dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
241$help_url =
'EN:Module_Ticket|FR:Module_Ticket_FR';
242$page_name =
'TicketSetup';
243llxHeader(
'', $langs->trans($page_name), $help_url);
246$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
253print
dol_get_fiche_head($head,
'settings', $langs->trans(
"Module56000Name"), -1,
"ticket");
255print
'<span class="opacitymedium">'.$langs->trans(
"TicketSetupDictionaries").
'</span> : <a href="'.DOL_URL_ROOT.
'/admin/dict.php">'.$langs->trans(
"ClickHereToGoTo", $langs->transnoentitiesnoconv(
"DictionarySetup")).
'</a><br>';
266print
'<div class="div-table-responsive-no-min">';
267print
'<table class="noborder centpercent">';
268print
'<tr class="liste_titre">';
269print
'<td width="100">'.$langs->trans(
"Name").
'</td>';
270print
'<td>'.$langs->trans(
"Description").
'</td>';
271print
'<td>'.$langs->trans(
"Example").
'</td>';
272print
'<td align="center" width="60">'.$langs->trans(
"Activated").
'</td>';
273print
'<td align="center" width="40">'.$langs->trans(
"ShortInfo").
'</td>';
278foreach ($dirmodels as $reldir) {
282 $handle = opendir($dir);
283 if (is_resource($handle)) {
284 while (($file = readdir($handle)) !==
false) {
285 if (preg_match(
'/^(mod_.*)\.php$/i', $file, $reg)) {
287 $classname = substr($file, 4);
289 include_once $dir.
'/'.$file.
'.php';
291 $module =
new $file();
294 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
298 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
302 if ($module->isEnabled()) {
303 print
'<tr class="oddeven"><td>'.$module->name.
"</td><td>\n";
304 print $module->info($langs);
308 print
'<td class="nowrap">';
309 $tmp = $module->getExample();
310 if (preg_match(
'/^Error/', $tmp)) {
311 $langs->load(
"errors");
312 print
'<div class="error">'.$langs->trans($tmp).
'</div>';
313 } elseif ($tmp ==
'NotConfigured') {
314 print
'<span class="opacitymedium">'.$langs->trans($tmp).
'</span>';
321 print
'<td class="center">';
322 if ($conf->global->TICKET_ADDON ==
'mod_'.$classname) {
323 print
img_picto($langs->trans(
"Activated"),
'switch_on');
325 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setmod&token='.newToken().
'&value=mod_'.$classname.
'" alt="'.$langs->trans(
"Default").
'">'.
img_picto($langs->trans(
"Disabled"),
'switch_off').
'</a>';
329 $ticket =
new Ticket($db);
330 $ticket->initAsSpecimen();
334 $htmltooltip .=
''.$langs->trans(
"Version").
': <b>'.$module->getVersion().
'</b><br>';
335 $nextval = $module->getNextValue($mysoc, $ticket);
336 if (
"$nextval" != $langs->trans(
"NotAvailable")) {
337 $htmltooltip .=
''.$langs->trans(
"NextValue").
': ';
339 $htmltooltip .= $nextval.
'<br>';
341 $htmltooltip .= $langs->trans($module->error).
'<br>';
345 print
'<td class="center">';
346 print $formcategory->textwithpicto(
'', $htmltooltip, 1, 0);
373$sql .=
" FROM ".MAIN_DB_PREFIX.
"document_model";
374$sql .=
" WHERE type = '".$db->escape($type).
"'";
375$sql .=
" AND entity = ".$conf->entity;
376$resql = $db->query($sql);
379 $num_rows = $db->num_rows($resql);
380 while ($i < $num_rows) {
381 $array = $db->fetch_array($resql);
382 array_push($def, $array[0]);
390print
'<div class="div-table-responsive-no-min">';
391print
'<table class="noborder cenpercent">'.
"\n";
392print
'<tr class="liste_titre">'.
"\n";
393print
'<td>'.$langs->trans(
"Name").
'</td>';
394print
'<td>'.$langs->trans(
"Description").
'</td>';
395print
'<td class="center" width="60">'.$langs->trans(
"Status").
"</td>\n";
396print
'<td class="center" width="60">'.$langs->trans(
"Default").
"</td>\n";
397print
'<td class="center" width="50">'.$langs->trans(
"Preview").
'</td>';
398print
'<td class="center" width="40">'.$langs->trans(
"ShortInfo").
'</td>';
403foreach ($dirmodels as $reldir) {
404 foreach (array(
'',
'/doc') as $valdir) {
405 $realpath = $reldir.
"core/modules/ticket".$valdir;
409 $handle = opendir($dir);
410 if (is_resource($handle)) {
411 while (($file = readdir($handle)) !==
false) {
417 foreach ($filelist as $file) {
418 if (preg_match(
'/\.modules\.php$/i', $file) && preg_match(
'/^(pdf_|doc_)/', $file)) {
419 if (file_exists($dir.
'/'.$file)) {
420 $name = substr($file, 4,
dol_strlen($file) - 16);
421 $classname = substr($file, 0,
dol_strlen($file) - 12);
423 require_once $dir.
'/'.$file;
424 $module =
new $classname($db);
426 $modulequalified = 1;
427 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
428 $modulequalified = 0;
430 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
431 $modulequalified = 0;
434 if ($modulequalified) {
435 print
'<tr class="oddeven"><td width="100">';
436 print(empty($module->name) ? $name : $module->
name);
438 if (method_exists($module,
'info')) {
439 print $module->info($langs);
441 print $module->description;
446 if (in_array($name, $def)) {
447 print
'<td class="center">'.
"\n";
448 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=del&token='.newToken().
'&value='.urlencode($name).
'">';
449 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
453 print
'<td class="center">'.
"\n";
454 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=set&token='.newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'">'.
img_picto($langs->trans(
"Disabled"),
'switch_off').
'</a>';
459 print
'<td class="center">';
461 print
img_picto($langs->trans(
"Default"),
'on');
463 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setdoc&token='.newToken().
'&value='.$name.
'&scan_dir='.$module->scandir.
'&label='.urlencode($module->name).
'" alt="'.$langs->trans(
"Default").
'">'.
img_picto($langs->trans(
"Disabled"),
'off').
'</a>';
468 print
'<td class="center">';
469 if ($module->type ==
'pdf') {
470 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=specimen&module='.urlencode($name).
'">'.
img_object($langs->trans(
"Preview"),
'pdf').
'</a>';
472 print
img_object($langs->trans(
"PreviewNotAvailable"),
'generic');
477 $htmltooltip =
''.$langs->trans(
"Name").
': '.$module->name;
478 $htmltooltip .=
'<br>'.$langs->trans(
"Type").
': '.($module->type ? $module->type : $langs->trans(
"Unknown"));
479 if ($module->type ==
'pdf') {
480 $htmltooltip .=
'<br>'.$langs->trans(
"Width").
'/'.$langs->trans(
"Height").
': '.$module->page_largeur.
'/'.$module->page_hauteur;
482 $htmltooltip .=
'<br>'.$langs->trans(
"Path").
': '.preg_replace(
'/^\//',
'', $realpath).
'/'.$file;
484 $htmltooltip .=
'<br><br><u>'.$langs->trans(
"FeaturesSupported").
':</u>';
485 $htmltooltip .=
'<br>'.$langs->trans(
"Logo").
': '.
yn($module->option_logo, 1, 1);
486 $htmltooltip .=
'<br>'.$langs->trans(
"MultiLanguage").
': '.
yn($module->option_multilang, 1, 1);
492 print
'<td class="center">';
493 print $formcategory->textwithpicto(
'', $htmltooltip, 1, 0);
510print
'<form method="POST" action="'.$_SERVER[
'PHP_SELF'].
'" enctype="multipart/form-data" >';
511print
'<input type="hidden" name="token" value="'.newToken().
'">';
512print
'<input type="hidden" name="action" value="setvarworkflow">';
513print
'<input type="hidden" name="page_y" value="">';
520print
'<div class="div-table-responsive-no-min">';
521print
'<table class="noborder centpercent">';
523print
'<tr class="liste_titre">';
524print
'<td>'.$langs->trans(
"Parameter").
'</td>';
525print
'<td>'.$langs->trans(
"Status").
"</td>\n";
526print
'<td class="center" width="40">'.$langs->trans(
"ShortInfo").
'</td>';
530print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketsAutoReadTicket").
'</td>';
531print
'<td class="left">';
532if ($conf->use_javascript_ajax) {
533 print ajax_constantonoff(
'TICKET_AUTO_READ_WHEN_CREATED_FROM_BACKEND');
535 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
536 print $formcategory->selectarray(
"TICKET_AUTO_READ_WHEN_CREATED_FROM_BACKEND", $arrval,
getDolGlobalString(
'TICKET_AUTO_READ_WHEN_CREATED_FROM_BACKEND'));
539print
'<td class="center">';
540print $formcategory->textwithpicto(
'', $langs->trans(
"TicketsAutoReadTicketHelp"), 1,
'help');
545print
'<tr class="oddeven">';
546print
'<td>'.$langs->trans(
"TicketsAutoAssignTicket").
'</td>';
547print
'<td class="left">';
548if ($conf->use_javascript_ajax) {
549 print ajax_constantonoff(
'TICKET_AUTO_ASSIGN_USER_CREATE');
551 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
552 print $formcategory->selectarray(
"TICKET_AUTO_ASSIGN_USER_CREATE", $arrval,
getDolGlobalString(
'TICKET_AUTO_ASSIGN_USER_CREATE'));
555print
'<td class="center">';
556print $formcategory->textwithpicto(
'', $langs->trans(
"TicketsAutoAssignTicketHelp"), 1,
'help');
561print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketsAutoNotifyClose").
'</td>';
562print
'<td class="left">';
563if ($conf->use_javascript_ajax) {
564 print ajax_constantonoff(
'TICKET_NOTIFY_AT_CLOSING');
566 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
567 print $formcategory->selectarray(
"TICKET_NOTIFY_AT_CLOSING", $arrval,
getDolGlobalString(
'TICKET_NOTIFY_AT_CLOSING'));
570print
'<td class="center">';
571print $formcategory->textwithpicto(
'', $langs->trans(
"TicketsAutoNotifyCloseHelp"), 1,
'help');
575if (isModEnabled(
'product')) {
576 $htmlname =
"product_category_id";
577 print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketChooseProductCategory").
'</td>';
578 print
'<td class="left">';
579 $formcategory->selectProductCategory(
getDolGlobalString(
'TICKET_PRODUCT_CATEGORY'), $htmlname);
580 if ($conf->use_javascript_ajax) {
584 print
'<td class="center">';
585 print $formcategory->textwithpicto(
'', $langs->trans(
"TicketChooseProductCategoryHelp"), 1,
'help');
590print
'<tr class="oddeven">';
591print
'<td>'.$langs->trans(
"TicketsDelayBeforeFirstAnswer").
"</td>";
592print
'<td class="left">
593 <input type="number" value="'.getDolGlobalString(
'TICKET_DELAY_BEFORE_FIRST_RESPONSE').
'" name="delay_first_response" class="width50">
595print
'<td class="center">';
596print $formcategory->textwithpicto(
'', $langs->trans(
"TicketsDelayBeforeFirstAnswerHelp"), 1,
'help');
600print
'<tr class="oddeven">';
601print
'<td>'.$langs->trans(
"TicketsDelayBetweenAnswers").
"</td>";
602print
'<td class="left">
603 <input type="number" value="'.getDolGlobalString(
'TICKET_DELAY_SINCE_LAST_RESPONSE').
'" name="delay_between_responses" class="width50">
605print
'<td class="center">';
606print $formcategory->textwithpicto(
'', $langs->trans(
"TicketsDelayBetweenAnswersHelp"), 1,
'help');
611print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketsAllowClassificationModificationIfClosed").
'</td>';
612print
'<td class="left">';
613if ($conf->use_javascript_ajax) {
614 print ajax_constantonoff(
'TICKET_ALLOW_CLASSIFICATION_MODIFICATION_EVEN_IF_CLOSED');
616 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
617 print $formcategory->selectarray(
"TICKET_ALLOW_CLASSIFICATION_MODIFICATION_EVEN_IF_CLOSED", $arrval,
getDolGlobalString(
'TICKET_ALLOW_CLASSIFICATION_MODIFICATION_EVEN_IF_CLOSED'));
620print
'<td class="center">';
621print $formcategory->textwithpicto(
'', $langs->trans(
"TicketsAllowClassificationModificationIfClosedHelp"), 1,
'help');
627print $formcategory->buttonsSaveCancel(
"Save",
'', array(), 0,
'reposition');
637print
'<table class="noborder centpercent">';
639print
'<form method="POST" action="'.$_SERVER[
'PHP_SELF'].
'" enctype="multipart/form-data" >';
640print
'<input type="hidden" name="token" value="'.newToken().
'">';
641print
'<input type="hidden" name="action" value="setvar">';
642print
'<input type="hidden" name="page_y" value="">';
644print
'<tr class="liste_titre">';
645print
'<td colspan="2">'.$langs->trans(
"Email").
'</td>';
646print
'<td class="center" width="40">'.$langs->trans(
"ShortInfo").
'</td>';
651 print
'<td colspan="2"><div class="info">'.$langs->trans(
"TicketCkEditorEmailNotActivated").
'</div></td>';
652 print
'<td class="center" width="40">'.$langs->trans(
"ShortInfo").
'</td>';
659print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketEmailNotificationFrom").
'</td>';
660print
'<td class="left">';
661print
'<input type="text" class="minwidth200" name="TICKET_NOTIFICATION_EMAIL_FROM" value="' .
getDolGlobalString(
'TICKET_NOTIFICATION_EMAIL_FROM').
'"></td>';
662print
'<td class="center">';
663print $formcategory->textwithpicto(
'', $langs->trans(
"TicketEmailNotificationFromHelp"), 1,
'help');
668print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketEmailNotificationTo").
'</td>';
669print
'<td class="left">';
670print
'<input type="text" class="minwidth200" name="TICKET_NOTIFICATION_EMAIL_TO" value="'.(getDolGlobalString(
'TICKET_NOTIFICATION_EMAIL_TO') ? $conf->global->TICKET_NOTIFICATION_EMAIL_TO :
'').
'"></td>';
671print
'<td class="center">';
672print $formcategory->textwithpicto(
'', $langs->trans(
"TicketEmailNotificationToHelp"), 1,
'help');
678 print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketsEmailAlsoSendToMainAddress").
'</td>';
679 print
'<td class="left">';
680 if ($conf->use_javascript_ajax) {
681 print ajax_constantonoff(
'TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS');
683 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
684 print $formcategory->selectarray(
"TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS", $arrval, $conf->global->TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS);
687 print
'<td class="center">';
688 print $formcategory->textwithpicto(
'', $langs->trans(
"TicketsEmailAlsoSendToMainAddressHelp"), 1,
'help');
696print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketMessageMailIntro");
698require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
699$doleditor =
new DolEditor(
'TICKET_MESSAGE_MAIL_INTRO', $mail_intro,
'100%', 90,
'dolibarr_mailings',
'',
false,
true,
getDolGlobalInt(
'FCKEDITOR_ENABLE_MAIL'), ROWS_2, 70);
702print
'<td class="center">';
703print $formcategory->textwithpicto(
'', $langs->trans(
"TicketMessageMailIntroHelpAdmin"), 1,
'help');
709print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketMessageMailFooter").
'</label>';
711require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
712$doleditor =
new DolEditor(
'TICKET_MESSAGE_MAIL_SIGNATURE', $mail_signature,
'100%', 90,
'dolibarr_mailings',
'',
false,
true,
getDolGlobalInt(
'FCKEDITOR_ENABLE_MAIL'), ROWS_2, 70);
715print
'<td class="center">';
716print $formcategory->textwithpicto(
'', $langs->trans(
"TicketMessageMailFooterHelpAdmin"), 1,
'help');
721print $formcategory->buttonsSaveCancel(
"Save",
'', array(), 0,
'reposition');
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.
ajax_combobox($htmlname, $events=array(), $minLengthToAutocomplete=0, $forcefocus=0, $widthTypeOfAutocomplete='resolve', $idforemptyvalue='-1', $morecss='')
Convert a html select field into an ajax combobox.
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.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
yn($yesno, $case=1, $color=0)
Return yes or no in current language.
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_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
getDolGlobalInt($key, $default=0)
Return a 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)
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
Class to generate the form for creating a new ticket.
$conf db name
Only used if Module[ID]Name translation string is not found.
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.