30require
'../main.inc.php';
31require_once DOL_DOCUMENT_ROOT.
"/core/class/html.formcategory.class.php";
32require_once DOL_DOCUMENT_ROOT.
"/core/lib/admin.lib.php";
33require_once DOL_DOCUMENT_ROOT.
"/core/lib/ticket.lib.php";
34require_once DOL_DOCUMENT_ROOT.
"/ticket/class/ticket.class.php";
37$langs->loadLangs(array(
"admin",
"ticket"));
45$value =
GETPOST(
'value',
'alpha');
46$action =
GETPOST(
'action',
'aZ09');
47$modulepart =
GETPOST(
'modulepart',
'aZ09');
49$label =
GETPOST(
'label',
'alpha');
50$scandir =
GETPOST(
'scan_dir',
'alpha');
60include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
62if ($action ==
'updateMask') {
63 $maskconstticket =
GETPOST(
'maskconstticket',
'aZ09');
64 $maskticket =
GETPOST(
'maskticket',
'alpha');
66 if ($maskconstticket && preg_match(
'/_MASK$/', $maskconstticket)) {
67 $res =
dolibarr_set_const($db, $maskconstticket, $maskticket,
'chaine', 0,
'', $conf->entity);
79} elseif ($action ==
'set') {
82} elseif ($action ==
'del') {
85 if ($conf->global->TICKET_ADDON_PDF ==
"$value") {
89} elseif (preg_match(
'/set_(.*)/', $action, $reg)) {
91 $value = GETPOSTISSET($code) ?
GETPOSTINT($code) : 1;
92 if ($code ==
'TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') >= 2) {
93 $param_notification_also_main_addressemail =
GETPOST(
'TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS',
'alpha');
94 $res =
dolibarr_set_const($db,
'TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS', $param_notification_also_main_addressemail,
'chaine', 0,
'', $conf->entity);
104} elseif (preg_match(
'/del_(.*)/', $action, $reg)) {
110} elseif ($action ==
'setdoc') {
112 if (
dolibarr_set_const($db,
"TICKET_ADDON_PDF", $value,
'chaine', 0,
'', $conf->entity)) {
115 $conf->global->TICKET_ADDON_PDF = $value;
123} elseif ($action ==
'setmod') {
128} elseif ($action ==
'setvarworkflow') {
130 if (empty($conf->use_javascript_ajax)) {
131 $param_auto_read =
GETPOST(
'TICKET_AUTO_READ_WHEN_CREATED_FROM_BACKEND',
'alpha');
132 $res =
dolibarr_set_const($db,
'TICKET_AUTO_READ_WHEN_CREATED_FROM_BACKEND', $param_auto_read,
'chaine', 0,
'', $conf->entity);
137 $param_auto_assign =
GETPOST(
'TICKET_AUTO_ASSIGN_USER_CREATE',
'alpha');
138 $res =
dolibarr_set_const($db,
'TICKET_AUTO_ASSIGN_USER_CREATE', $param_auto_assign,
'chaine', 0,
'', $conf->entity);
143 $param_auto_notify_close =
GETPOST(
'TICKET_NOTIFY_AT_CLOSING',
'alpha');
144 $res =
dolibarr_set_const($db,
'TICKET_NOTIFY_AT_CLOSING', $param_auto_notify_close,
'chaine', 0,
'', $conf->entity);
150 $param_limit_view =
GETPOST(
'TICKET_LIMIT_VIEW_ASSIGNED_ONLY',
'alpha');
151 $res =
dolibarr_set_const($db,
'TICKET_LIMIT_VIEW_ASSIGNED_ONLY', $param_limit_view,
'chaine', 0,
'', $conf->entity);
156 $param_delay_first_response =
GETPOSTINT(
'delay_first_response');
157 $res =
dolibarr_set_const($db,
'TICKET_DELAY_BEFORE_FIRST_RESPONSE', $param_delay_first_response,
'chaine', 0,
'', $conf->entity);
162 $param_delay_between_responses =
GETPOSTINT(
'delay_between_responses');
163 $res =
dolibarr_set_const($db,
'TICKET_DELAY_SINCE_LAST_RESPONSE', $param_delay_between_responses,
'chaine', 0,
'', $conf->entity);
167} elseif ($action ==
'setvar') {
168 include_once DOL_DOCUMENT_ROOT.
"/core/lib/files.lib.php";
170 $notification_email =
GETPOST(
'TICKET_NOTIFICATION_EMAIL_FROM',
'alpha');
171 $notification_email_description =
"Sender of ticket replies sent from Dolibarr";
172 if (!empty($notification_email)) {
173 $res =
dolibarr_set_const($db,
'TICKET_NOTIFICATION_EMAIL_FROM', $notification_email,
'chaine', 0, $notification_email_description, $conf->entity);
175 $res =
dolibarr_set_const($db,
'TICKET_NOTIFICATION_EMAIL_FROM', $conf->global->MAIN_MAIL_EMAIL_FROM,
'chaine', 0, $notification_email_description, $conf->entity);
182 $notification_email_to =
GETPOST(
'TICKET_NOTIFICATION_EMAIL_TO',
'alpha');
183 $notification_email_to_description =
"Notified e-mail for ticket replies sent from Dolibarr";
184 if (!empty($notification_email_to)) {
185 $res =
dolibarr_set_const($db,
'TICKET_NOTIFICATION_EMAIL_TO', $notification_email_to,
'chaine', 0, $notification_email_to_description, $conf->entity);
187 $res =
dolibarr_set_const($db,
'TICKET_NOTIFICATION_EMAIL_TO',
'',
'chaine', 0, $notification_email_to_description, $conf->entity);
193 $mail_intro =
GETPOST(
'TICKET_MESSAGE_MAIL_INTRO',
'restricthtml');
194 $mail_intro_description =
"Introduction text of ticket replies sent from Dolibarr";
195 if (!empty($mail_intro)) {
196 $res =
dolibarr_set_const($db,
'TICKET_MESSAGE_MAIL_INTRO', $mail_intro,
'chaine', 0, $mail_intro_description, $conf->entity);
198 $res =
dolibarr_set_const($db,
'TICKET_MESSAGE_MAIL_INTRO',
'',
'chaine', 0, $mail_intro_description, $conf->entity);
204 $mail_signature =
GETPOST(
'TICKET_MESSAGE_MAIL_SIGNATURE',
'restricthtml');
205 $signature_description =
"Signature of ticket replies sent from Dolibarr";
206 if (!empty($mail_signature)) {
207 $res =
dolibarr_set_const($db,
'TICKET_MESSAGE_MAIL_SIGNATURE', $mail_signature,
'chaine', 0, $signature_description, $conf->entity);
209 $res =
dolibarr_set_const($db,
'TICKET_MESSAGE_MAIL_SIGNATURE',
'',
'chaine', 0, $signature_description, $conf->entity);
216 if (
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') >= 2 && empty($conf->use_javascript_ajax)) {
217 $param_notification_also_main_addressemail =
GETPOST(
'TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS',
'alpha');
218 $res =
dolibarr_set_const($db,
'TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS', $param_notification_also_main_addressemail,
'chaine', 0,
'', $conf->entity);
230$dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
235$help_url =
'EN:Module_Ticket|FR:Module_Ticket_FR';
236$page_name =
'TicketSetup';
237llxHeader(
'', $langs->trans($page_name), $help_url,
'', 0, 0,
'',
'',
'',
'mod-admin page-ticket');
240$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
247print
dol_get_fiche_head($head,
'settings', $langs->trans(
"Module56000Name"), -1,
"ticket");
249print
'<span class="opacitymedium">'.$langs->trans(
"TicketSetupDictionaries").
'</span> : <a href="'.DOL_URL_ROOT.
'/admin/dict.php">'.$langs->trans(
"ClickHereToGoTo", $langs->transnoentitiesnoconv(
"DictionarySetup")).
'</a><br>';
260print
'<div class="div-table-responsive-no-min">';
261print
'<table class="noborder centpercent">';
262print
'<tr class="liste_titre">';
263print
'<td width="100">'.$langs->trans(
"Name").
'</td>';
264print
'<td>'.$langs->trans(
"Description").
'</td>';
265print
'<td>'.$langs->trans(
"Example").
'</td>';
266print
'<td align="center" width="60">'.$langs->trans(
"Activated").
'</td>';
267print
'<td align="center" width="40">'.$langs->trans(
"ShortInfo").
'</td>';
272foreach ($dirmodels as $reldir) {
276 $handle = opendir($dir);
277 if (is_resource($handle)) {
278 while (($file = readdir($handle)) !==
false) {
279 if (preg_match(
'/^(mod_.*)\.php$/i', $file, $reg)) {
281 $classname = substr($file, 4);
283 include_once $dir.
'/'.$file.
'.php';
285 $module =
new $file();
286 '@phan-var-force ModeleNumRefTicket $module';
289 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
293 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
297 if ($module->isEnabled()) {
298 print
'<tr class="oddeven"><td>'.$module->name.
"</td><td>\n";
299 print $module->info($langs);
303 print
'<td class="nowrap">';
304 $tmp = $module->getExample();
305 if (preg_match(
'/^Error/', $tmp)) {
306 $langs->load(
"errors");
307 print
'<div class="error">'.$langs->trans($tmp).
'</div>';
308 } elseif ($tmp ==
'NotConfigured') {
309 print
'<span class="opacitymedium">'.$langs->trans($tmp).
'</span>';
316 print
'<td class="center">';
317 if ($conf->global->TICKET_ADDON ==
'mod_'.$classname) {
318 print
img_picto($langs->trans(
"Activated"),
'switch_on');
320 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>';
324 $ticket =
new Ticket($db);
325 $ticket->initAsSpecimen();
329 $htmltooltip .=
''.$langs->trans(
"Version").
': <b>'.$module->getVersion().
'</b><br>';
330 $nextval = $module->getNextValue($mysoc, $ticket);
331 if (
"$nextval" != $langs->trans(
"NotAvailable")) {
332 $htmltooltip .=
''.$langs->trans(
"NextValue").
': ';
334 $htmltooltip .= $nextval.
'<br>';
336 $htmltooltip .= $langs->trans($module->error).
'<br>';
340 print
'<td class="center">';
341 print $formcategory->textwithpicto(
'', $htmltooltip, 1, 0);
368$sql .=
" FROM ".MAIN_DB_PREFIX.
"document_model";
369$sql .=
" WHERE type = '".$db->escape($type).
"'";
370$sql .=
" AND entity = ".$conf->entity;
371$resql = $db->query($sql);
374 $num_rows = $db->num_rows($resql);
375 while ($i < $num_rows) {
376 $array = $db->fetch_array($resql);
377 if (is_array($array)) {
378 array_push($def, $array[0]);
387print
'<div class="div-table-responsive-no-min">';
388print
'<table class="noborder cenpercent">'.
"\n";
389print
'<tr class="liste_titre">'.
"\n";
390print
'<td>'.$langs->trans(
"Name").
'</td>';
391print
'<td>'.$langs->trans(
"Description").
'</td>';
392print
'<td class="center" width="60">'.$langs->trans(
"Status").
"</td>\n";
393print
'<td class="center" width="60">'.$langs->trans(
"Default").
"</td>\n";
394print
'<td class="center" width="50">'.$langs->trans(
"Preview").
'</td>';
395print
'<td class="center" width="40">'.$langs->trans(
"ShortInfo").
'</td>';
400foreach ($dirmodels as $reldir) {
401 foreach (array(
'',
'/doc') as $valdir) {
402 $realpath = $reldir.
"core/modules/ticket".$valdir;
406 $handle = opendir($dir);
407 if (is_resource($handle)) {
409 while (($file = readdir($handle)) !==
false) {
415 foreach ($filelist as $file) {
416 if (preg_match(
'/\.modules\.php$/i', $file) && preg_match(
'/^(pdf_|doc_)/', $file)) {
417 if (file_exists($dir.
'/'.$file)) {
418 $name = substr($file, 4,
dol_strlen($file) - 16);
419 $classname = substr($file, 0,
dol_strlen($file) - 12);
421 require_once $dir.
'/'.$file;
422 $module =
new $classname($db);
423 '@phan-var-force CommonDocGenerator $module';
425 $modulequalified = 1;
426 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
427 $modulequalified = 0;
429 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
430 $modulequalified = 0;
433 if ($modulequalified) {
434 print
'<tr class="oddeven"><td width="100">';
435 print(empty($module->name) ? $name : $module->
name);
437 if (method_exists($module,
'info')) {
438 print $module->info($langs);
440 print $module->description;
445 if (in_array($name, $def)) {
446 print
'<td class="center">'.
"\n";
447 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=del&token='.
newToken().
'&value='.urlencode($name).
'">';
448 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
452 print
'<td class="center">'.
"\n";
453 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>';
458 print
'<td class="center">';
460 print
img_picto($langs->trans(
"Default"),
'on');
462 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>';
467 print
'<td class="center">';
468 if ($module->type ==
'pdf') {
469 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=specimen&module='.urlencode($name).
'">'.
img_object($langs->trans(
"Preview"),
'pdf').
'</a>';
471 print
img_object($langs->trans(
"PreviewNotAvailable"),
'generic');
476 $htmltooltip =
''.$langs->trans(
"Name").
': '.$module->name;
477 $htmltooltip .=
'<br>'.$langs->trans(
"Type").
': '.($module->type ? $module->type : $langs->trans(
"Unknown"));
478 if ($module->type ==
'pdf') {
479 $htmltooltip .=
'<br>'.$langs->trans(
"Width").
'/'.$langs->trans(
"Height").
': '.$module->page_largeur.
'/'.$module->page_hauteur;
481 $htmltooltip .=
'<br>'.$langs->trans(
"Path").
': '.preg_replace(
'/^\//',
'', $realpath).
'/'.$file;
483 $htmltooltip .=
'<br><br><u>'.$langs->trans(
"FeaturesSupported").
':</u>';
484 $htmltooltip .=
'<br>'.$langs->trans(
"Logo").
': '.
yn($module->option_logo, 1, 1);
485 $htmltooltip .=
'<br>'.$langs->trans(
"MultiLanguage").
': '.
yn($module->option_multilang, 1, 1);
491 print
'<td class="center">';
492 print $formcategory->textwithpicto(
'', $htmltooltip, 1, 0);
509print
'<form method="POST" action="'.$_SERVER[
'PHP_SELF'].
'" enctype="multipart/form-data" >';
510print
'<input type="hidden" name="token" value="'.newToken().
'">';
511print
'<input type="hidden" name="action" value="setvarworkflow">';
512print
'<input type="hidden" name="page_y" value="">';
519print
'<div class="div-table-responsive-no-min">';
520print
'<table class="noborder centpercent">';
522print
'<tr class="liste_titre">';
523print
'<td>'.$langs->trans(
"Parameter").
'</td>';
524print
'<td>'.$langs->trans(
"Status").
"</td>\n";
525print
'<td class="center" width="40">'.$langs->trans(
"ShortInfo").
'</td>';
529print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketsAutoReadTicket").
'</td>';
530print
'<td class="left">';
531if ($conf->use_javascript_ajax) {
532 print ajax_constantonoff(
'TICKET_AUTO_READ_WHEN_CREATED_FROM_BACKEND');
534 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
535 print $formcategory->selectarray(
"TICKET_AUTO_READ_WHEN_CREATED_FROM_BACKEND", $arrval,
getDolGlobalString(
'TICKET_AUTO_READ_WHEN_CREATED_FROM_BACKEND'));
538print
'<td class="center">';
539print $formcategory->textwithpicto(
'', $langs->trans(
"TicketsAutoReadTicketHelp"), 1,
'help');
544print
'<tr class="oddeven">';
545print
'<td>'.$langs->trans(
"TicketsAutoAssignTicket").
'</td>';
546print
'<td class="left">';
547if ($conf->use_javascript_ajax) {
548 print ajax_constantonoff(
'TICKET_AUTO_ASSIGN_USER_CREATE');
550 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
551 print $formcategory->selectarray(
"TICKET_AUTO_ASSIGN_USER_CREATE", $arrval,
getDolGlobalString(
'TICKET_AUTO_ASSIGN_USER_CREATE'));
554print
'<td class="center">';
555print $formcategory->textwithpicto(
'', $langs->trans(
"TicketsAutoAssignTicketHelp"), 1,
'help');
560print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketsAutoNotifyClose").
'</td>';
561print
'<td class="left">';
562if ($conf->use_javascript_ajax) {
563 print ajax_constantonoff(
'TICKET_NOTIFY_AT_CLOSING');
565 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
566 print $formcategory->selectarray(
"TICKET_NOTIFY_AT_CLOSING", $arrval,
getDolGlobalString(
'TICKET_NOTIFY_AT_CLOSING'));
569print
'<td class="center">';
570print $formcategory->textwithpicto(
'', $langs->trans(
"TicketsAutoNotifyCloseHelp"), 1,
'help');
574print
'<tr class="oddeven">';
575print
'<td>'.$langs->trans(
"TicketsDelayBeforeFirstAnswer").
"</td>";
576print
'<td class="left">
577 <input type="number" value="'.getDolGlobalString(
'TICKET_DELAY_BEFORE_FIRST_RESPONSE').
'" name="delay_first_response" class="width50">
579print
'<td class="center">';
580print $formcategory->textwithpicto(
'', $langs->trans(
"TicketsDelayBeforeFirstAnswerHelp"), 1,
'help');
584print
'<tr class="oddeven">';
585print
'<td>'.$langs->trans(
"TicketsDelayBetweenAnswers").
"</td>";
586print
'<td class="left">
587 <input type="number" value="'.getDolGlobalString(
'TICKET_DELAY_SINCE_LAST_RESPONSE').
'" name="delay_between_responses" class="width50">
589print
'<td class="center">';
590print $formcategory->textwithpicto(
'', $langs->trans(
"TicketsDelayBetweenAnswersHelp"), 1,
'help');
595print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketsAllowClassificationModificationIfClosed").
'</td>';
596print
'<td class="left">';
597if ($conf->use_javascript_ajax) {
598 print ajax_constantonoff(
'TICKET_ALLOW_CLASSIFICATION_MODIFICATION_EVEN_IF_CLOSED');
600 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
601 print $formcategory->selectarray(
"TICKET_ALLOW_CLASSIFICATION_MODIFICATION_EVEN_IF_CLOSED", $arrval,
getDolGlobalString(
'TICKET_ALLOW_CLASSIFICATION_MODIFICATION_EVEN_IF_CLOSED'));
604print
'<td class="center">';
605print $formcategory->textwithpicto(
'', $langs->trans(
"TicketsAllowClassificationModificationIfClosedHelp"), 1,
'help');
611print $formcategory->buttonsSaveCancel(
"Save",
'', array(), 0,
'reposition');
623print
'<table class="noborder centpercent">';
625print
'<form method="POST" action="'.$_SERVER[
'PHP_SELF'].
'" enctype="multipart/form-data" >';
626print
'<input type="hidden" name="token" value="'.newToken().
'">';
627print
'<input type="hidden" name="action" value="setvar">';
628print
'<input type="hidden" name="page_y" value="">';
630print
'<tr class="liste_titre">';
631print
'<td colspan="2">'.$langs->trans(
"Email").
'</td>';
632print
'<td class="center" width="40">'.$langs->trans(
"ShortInfo").
'</td>';
637 print
'<td colspan="2"><div class="info">'.$langs->trans(
"TicketCkEditorEmailNotActivated").
'</div></td>';
638 print
'<td class="center" width="40">'.$langs->trans(
"ShortInfo").
'</td>';
645print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketEmailNotificationFrom").
'</td>';
646print
'<td class="left">';
647print
'<input type="text" class="minwidth200" name="TICKET_NOTIFICATION_EMAIL_FROM" value="' .
getDolGlobalString(
'TICKET_NOTIFICATION_EMAIL_FROM').
'"></td>';
648print
'<td class="center">';
649print $formcategory->textwithpicto(
'', $langs->trans(
"TicketEmailNotificationFromHelp"), 1,
'help');
654print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketEmailNotificationTo").
'</td>';
655print
'<td class="left">';
656print
'<input type="text" class="minwidth200" name="TICKET_NOTIFICATION_EMAIL_TO" value="'.(getDolGlobalString(
'TICKET_NOTIFICATION_EMAIL_TO') ? $conf->global->TICKET_NOTIFICATION_EMAIL_TO :
'').
'"></td>';
657print
'<td class="center">';
658print $formcategory->textwithpicto(
'', $langs->trans(
"TicketEmailNotificationToHelp"), 1,
'help');
664 print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketsEmailAlsoSendToMainAddress").
'</td>';
665 print
'<td class="left">';
666 if ($conf->use_javascript_ajax) {
667 print ajax_constantonoff(
'TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS');
669 $arrval = array(
'0' => $langs->trans(
"No"),
'1' => $langs->trans(
"Yes"));
670 print $formcategory->selectarray(
"TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS", $arrval, $conf->global->TICKET_NOTIFICATION_ALSO_MAIN_ADDRESS);
673 print
'<td class="center">';
674 print $formcategory->textwithpicto(
'', $langs->trans(
"TicketsEmailAlsoSendToMainAddressHelp"), 1,
'help');
681print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketMessageMailIntro");
683require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
684$doleditor =
new DolEditor(
'TICKET_MESSAGE_MAIL_INTRO', $mail_intro,
'100%', 90,
'dolibarr_mailings',
'',
false,
true,
getDolGlobalInt(
'FCKEDITOR_ENABLE_MAIL'), ROWS_2, 70);
687print
'<td class="center">';
688print $formcategory->textwithpicto(
'', $langs->trans(
"TicketMessageMailIntroHelpAdmin"), 1,
'help');
693print
'<tr class="oddeven"><td>'.$langs->trans(
"TicketMessageMailFooter").
'</label>';
695require_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
696$doleditor =
new DolEditor(
'TICKET_MESSAGE_MAIL_SIGNATURE', $mail_signature,
'100%', 90,
'dolibarr_mailings',
'',
false,
true,
getDolGlobalInt(
'FCKEDITOR_ENABLE_MAIL'), ROWS_2, 70);
699print
'<td class="center">';
700print $formcategory->textwithpicto(
'', $langs->trans(
"TicketMessageMailFooterHelpAdmin"), 1,
'help');
705print $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.
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($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
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_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.
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.
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.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
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.