dolibarr 19.0.4
ticket.lib.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2013-2018 Jean-François FERRY <hello@librethic.io>
3 * Copyright (C) 2016 Christophe Battarel <christophe@altairis.fr>
4 * Copyright (C) 2019-2022 Frédéric France <frederic.france@netlogic.fr>
5 * Copyright (C) 2025 Benjamin Falière <benjamin@faliere.com>
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
33{
34 global $langs, $conf, $db;
35
36 $extrafields = new ExtraFields($db);
37 $extrafields->fetch_name_optionals_label('ticket');
38
39 $langs->load("ticket");
40
41 $h = 0;
42 $head = array();
43
44 $head[$h][0] = DOL_URL_ROOT.'/admin/ticket.php';
45 $head[$h][1] = $langs->trans("TicketSettings");
46 $head[$h][2] = 'settings';
47 $h++;
48
49 $head[$h][0] = DOL_URL_ROOT.'/admin/ticket_extrafields.php';
50 $head[$h][1] = $langs->trans("ExtraFieldsTicket");
51 $nbExtrafields = $extrafields->attributes['ticket']['count'];
52 if ($nbExtrafields > 0) {
53 $head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbExtrafields.'</span>';
54 }
55 $head[$h][2] = 'attributes';
56 $h++;
57
58 $head[$h][0] = DOL_URL_ROOT.'/admin/ticket_public.php';
59 $head[$h][1] = $langs->trans("PublicInterface");
60 $head[$h][2] = 'public';
61 $h++;
62
63 // Show more tabs from modules
64 // Entries must be declared in modules descriptor with line
65 //$this->tabs = array(
66 // 'entity:+tabname:Title:@ticket:/ticket/mypage.php?id=__ID__'
67 //); // to add new tab
68 //$this->tabs = array(
69 // 'entity:-tabname:Title:@ticket:/ticket/mypage.php?id=__ID__'
70 //); // to remove a tab
71 complete_head_from_modules($conf, $langs, null, $head, $h, 'ticketadmin');
72
73 complete_head_from_modules($conf, $langs, null, $head, $h, 'ticketadmin', 'remove');
74
75 return $head;
76}
77
84function ticket_prepare_head($object)
85{
86 global $langs, $conf, $user;
87
88 $h = 0;
89 $head = array();
90 $head[$h][0] = DOL_URL_ROOT.'/ticket/card.php?track_id='.$object->track_id;
91 $head[$h][1] = $langs->trans("Ticket");
92 $head[$h][2] = 'tabTicket';
93 $h++;
94
95 if (!getDolGlobalInt('MAIN_DISABLE_CONTACTS_TAB') && empty($user->socid) && isModEnabled("societe")) {
96 $nbContact = count($object->liste_contact(-1, 'internal')) + count($object->liste_contact(-1, 'external'));
97 $head[$h][0] = DOL_URL_ROOT.'/ticket/contact.php?track_id='.$object->track_id;
98 $head[$h][1] = $langs->trans('ContactsAddresses');
99 if ($nbContact > 0) {
100 $head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbContact.'</span>';
101 }
102 $head[$h][2] = 'contact';
103 $h++;
104 }
105
106 complete_head_from_modules($conf, $langs, $object, $head, $h, 'ticket', 'add', 'core');
107
108 // Attached files
109 include_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
110 $upload_dir = $conf->ticket->dir_output."/".$object->ref;
111 $nbFiles = count(dol_dir_list($upload_dir, 'files'));
112 $head[$h][0] = DOL_URL_ROOT.'/ticket/document.php?id='.$object->id;
113 $head[$h][1] = $langs->trans("Documents");
114 if ($nbFiles > 0) {
115 $head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbFiles.'</span>';
116 }
117
118 $head[$h][2] = 'tabTicketDocument';
119 $h++;
120
121
122 // History
123 $ticketViewType = "messaging";
124 if (empty($_SESSION['ticket-view-type'])) {
125 $_SESSION['ticket-view-type'] = $ticketViewType;
126 } else {
127 $ticketViewType = $_SESSION['ticket-view-type'];
128 }
129
130 if ($ticketViewType == "messaging") {
131 $head[$h][0] = DOL_URL_ROOT.'/ticket/messaging.php?track_id='.$object->track_id;
132 } else {
133 // $ticketViewType == "list"
134 $head[$h][0] = DOL_URL_ROOT.'/ticket/agenda.php?track_id='.$object->track_id;
135 }
136 $head[$h][1] = $langs->trans('Events');
137 if (isModEnabled('agenda') && ($user->hasRight('agenda', 'myactions', 'read') || $user->hasRight('agenda', 'allactions', 'read'))) {
138 $head[$h][1] .= '/';
139 $head[$h][1] .= $langs->trans("Agenda");
140 }
141 $head[$h][2] = 'tabTicketLogs';
142 $h++;
143
144
145 complete_head_from_modules($conf, $langs, $object, $head, $h, 'ticket', 'add', 'external');
146
147 complete_head_from_modules($conf, $langs, $object, $head, $h, 'ticket', 'remove');
148
149 return $head;
150}
151
158function showDirectPublicLink($object)
159{
160 global $conf, $langs;
161
162 require_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
163 $email = CMailFile::getValidAddress($object->origin_email, 2);
164 $url = '';
165 if ($email) {
166 $url = getDolGlobalString('TICKET_URL_PUBLIC_INTERFACE', dol_buildpath('/public/ticket/', 3)).'view.php?track_id='.$object->track_id.'&email='.$email;
167 }
168
169 $out = '';
170 if (!getDolGlobalInt('TICKET_ENABLE_PUBLIC_INTERFACE')) {
171 $langs->load('errors');
172 $out .= '<span class="opacitymedium">'.$langs->trans("ErrorPublicInterfaceNotEnabled").'</span>';
173 } else {
174 $out .= img_picto('', 'object_globe.png').' <span class="opacitymedium">'.$langs->trans("TicketPublicAccess").'</span><br>';
175 if ($url) {
176 $out .= '<div class="urllink">';
177 $out .= '<input type="text" id="directpubliclink" class="quatrevingtpercentminusx" value="'.$url.'">';
178 $out .= '<a href="'.$url.'" target="_blank" rel="noopener noreferrer">'.img_picto('', 'object_globe.png', 'class="paddingleft"').'</a>';
179 $out .= '</div>';
180 $out .= ajax_autoselect("directpubliclink", 0);
181 } else {
182 $out .= '<span class="opacitymedium">'.$langs->trans("TicketNotCreatedFromPublicInterface").'</span>';
183 }
184 }
185
186 return $out;
187}
188
195function generate_random_id($car = 16)
196{
197 $string = "";
198 $chaine = "abcdefghijklmnopqrstuvwxyz123456789";
199 mt_srand((float) microtime() * 1000000);
200 for ($i = 0; $i < $car; $i++) {
201 $string .= $chaine[mt_rand() % strlen($chaine)];
202 }
203 return $string;
204}
205
217function llxHeaderTicket($title, $head = "", $disablejs = 0, $disablehead = 0, $arrayofjs = '', $arrayofcss = '')
218{
219 global $user, $conf, $langs, $mysoc;
220
221 $urllogo = "";
222 top_htmlhead($head, $title, $disablejs, $disablehead, $arrayofjs, $arrayofcss, 0, 1); // Show html headers
223
224 print '<body id="mainbody" class="publicnewticketform">';
225 print '<div class="publicnewticketform2 flexcontainer centpercent" style="min-height: 100%;">';
226
227 print '<header class="center centpercent">';
228
229 // Define urllogo
230 if (getDolGlobalInt('TICKET_SHOW_COMPANY_LOGO') || getDolGlobalString('TICKET_PUBLIC_INTERFACE_TOPIC')) {
231 // Print logo
232 if (getDolGlobalInt('TICKET_SHOW_COMPANY_LOGO')) {
233 $urllogo = DOL_URL_ROOT.'/theme/common/login_logo.png';
234
235 if (!empty($mysoc->logo_small) && is_readable($conf->mycompany->dir_output.'/logos/thumbs/'.$mysoc->logo_small)) {
236 $urllogo = DOL_URL_ROOT.'/viewimage.php?modulepart=mycompany&amp;entity='.$conf->entity.'&amp;file='.urlencode('logos/thumbs/'.$mysoc->logo_small);
237 } elseif (!empty($mysoc->logo) && is_readable($conf->mycompany->dir_output.'/logos/'.$mysoc->logo)) {
238 $urllogo = DOL_URL_ROOT.'/viewimage.php?modulepart=mycompany&amp;entity='.$conf->entity.'&amp;file='.urlencode('logos/'.$mysoc->logo);
239 } elseif (is_readable(DOL_DOCUMENT_ROOT.'/theme/dolibarr_logo.svg')) {
240 $urllogo = DOL_URL_ROOT.'/theme/dolibarr_logo.svg';
241 }
242 }
243 }
244
245 // Output html code for logo
246 if ($urllogo || getDolGlobalString('TICKET_PUBLIC_INTERFACE_TOPIC')) {
247 print '<div class="backgreypublicpayment">';
248 print '<div class="logopublicpayment">';
249 if ($urllogo) {
250 print '<a href="'.(getDolGlobalString('TICKET_URL_PUBLIC_INTERFACE') ? getDolGlobalString('TICKET_URL_PUBLIC_INTERFACE') : dol_buildpath('/public/ticket/index.php?entity='.$conf->entity, 1)).'">';
251 print '<img id="dolpaymentlogo" src="'.$urllogo.'"';
252 print '>';
253 print '</a>';
254 }
255 if (getDolGlobalString('TICKET_PUBLIC_INTERFACE_TOPIC')) {
256 print '<div class="clearboth"></div><strong>'.(getDolGlobalString('TICKET_PUBLIC_INTERFACE_TOPIC') ? getDolGlobalString('TICKET_PUBLIC_INTERFACE_TOPIC') : $langs->trans("TicketSystem")).'</strong>';
257 }
258 print '</div>';
259 if (!getDolGlobalInt('MAIN_HIDE_POWERED_BY')) {
260 print '<div class="poweredbypublicpayment opacitymedium right hideonsmartphone"><a class="poweredbyhref" href="https://www.dolibarr.org?utm_medium=website&utm_source=poweredby" target="dolibarr" rel="noopener">'.$langs->trans("PoweredBy").'<br><img src="'.DOL_URL_ROOT.'/theme/dolibarr_logo.svg" width="80px"></a></div>';
261 }
262 print '</div>';
263 }
264
265 if (getDolGlobalString('TICKET_IMAGE_PUBLIC_INTERFACE')) {
266 print '<div class="backimagepublicticket">';
267 print '<img id="idTICKET_IMAGE_PUBLIC_INTERFACE" src="'.getDolGlobalString('TICKET_IMAGE_PUBLIC_INTERFACE').'">';
268 print '</div>';
269 }
270
271 print '</header>';
272
273 //print '<div class="ticketlargemargin">';
274}
static getValidAddress($address, $format, $encode=0, $maxnumberofemail=0)
Return a formatted address string for SMTP protocol.
Class to manage standard extra fields.
dol_dir_list($path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
Definition files.lib.php:62
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)
ajax_autoselect($htmlname, $addlink='', $textonlink='Link')
Make content of an input box selected when we click into input field.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
complete_head_from_modules($conf, $langs, $object, &$head, &$h, $type, $mode='add', $filterorigmodule='')
Complete or removed entries into a head array (used to build tabs).
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
top_htmlhead($head, $title='', $disablejs=0, $disablehead=0, $arrayofjs=array(), $arrayofcss=array(), $disableforlogin=0, $disablenofollow=0, $disablenoindex=0)
Ouput html header of a page.
generate_random_id($car=16)
Generate a random id.
llxHeaderTicket($title, $head="", $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='')
Show http header, open body tag and show HTML header banner for public pages for tickets.
ticketAdminPrepareHead()
Build tabs for admin page.
showDirectPublicLink($object)
Return string with full Url.
ticket_prepare_head($object)
Build tabs for a Ticket object.