dolibarr 18.0.6
modTicket.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) - 2013-2018 Jean-François FERRY <hello@librethic.io>
3 *
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <https://www.gnu.org/licenses/>.
16 *
17 * Module descriptor for ticket system
18 */
19
27require_once DOL_DOCUMENT_ROOT."/core/modules/DolibarrModules.class.php";
28
29
34{
40 public function __construct($db)
41 {
42 global $langs, $conf;
43 $langs->load("ticket");
44
45 $this->db = $db;
46
47 // Id for module (must be unique).
48 // Use a free id here
49 // (See in Home -> System information -> Dolibarr for list of used modules id).
50 $this->numero = 56000;
51 // Key text used to identify module (for permissions, menus, etc...)
52 $this->rights_class = 'ticket';
53
54 // Family can be 'crm','financial','hr','projects','products','ecm','technic','other'
55 // It is used to group modules in module setup page
56 $this->family = "crm";
57 // Module position in the family
58 $this->module_position = '60';
59 // Module label (no space allowed)
60 // used if translation string 'ModuleXXXName' not found
61 // (where XXX is value of numeric property 'numero' of module)
62 $this->name = preg_replace('/^mod/i', '', get_class($this));
63 // Module description
64 // used if translation string 'ModuleXXXDesc' not found
65 // (where XXX is value of numeric property 'numero' of module)
66 $this->description = "Incident/support ticket management";
67 // Possible values for version are: 'development', 'experimental' or version
68 $this->version = 'dolibarr';
69 // Key used in llx_const table to save module status enabled/disabled
70 // (where MYMODULE is value of property name of module in uppercase)
71 $this->const_name = 'MAIN_MODULE_'.strtoupper($this->name);
72 // Name of image file used for this module.
73 // If file is in theme/yourtheme/img directory under name object_pictovalue.png
74 // use this->picto='pictovalue'
75 // If file is in module/img directory under name object_pictovalue.png
76 // use this->picto='pictovalue@module'
77 $this->picto = 'ticket'; // mypicto@ticket
78 // Defined all module parts (triggers, login, substitutions, menus, css, etc...)
79 // for default path (eg: /ticket/core/xxxxx) (0=disable, 1=enable)
80 // for specific path of parts (eg: /ticket/core/modules/barcode)
81 // for specific css file (eg: /ticket/css/ticket.css.php)
82 $this->module_parts = array(
83 // Set this to 1 if module has its own trigger directory
84 'triggers' => 1,
85 );
86
87 // Data directories to create when module is enabled.
88 // Example: this->dirs = array("/ticket/temp");
89 $this->dirs = array();
90
91 // Config pages. Put here list of php pages
92 // stored into ticket/admin directory, used to setup module.
93 $this->config_page_url = array("ticket.php");
94
95 // Dependencies
96 $this->hidden = false; // A condition to hide module
97 $this->depends = array('modAgenda'); // List of module class names as string that must be enabled if this module is enabled
98 $this->requiredby = array(); // List of module ids to disable if this one is disabled
99 $this->conflictwith = array(); // List of module class names as string this module is in conflict with
100 $this->phpmin = array(7, 0); // Minimum version of PHP required by module
101 $this->langfiles = array("ticket");
102
103 // Constants
104 // List of particular constants to add when module is enabled
105 // (key, 'chaine', value, desc, visible, 'current' or 'allentities', deleteonunactive)
106 // Example:
107 $default_footer = $langs->trans('TicketMessageMailFooterText', getDolGlobalString('MAIN_INFO_SOCIETE_NOM'));
108 $this->const = array(
109 1 => array('TICKET_ENABLE_PUBLIC_INTERFACE', 'chaine', '0', 'Enable ticket public interface', 0),
110 2 => array('TICKET_ADDON', 'chaine', 'mod_ticket_simple', 'Ticket ref module', 0),
111 3 => array('TICKET_ADDON_PDF_ODT_PATH', 'chaine', 'DOL_DATA_ROOT/doctemplates/tickets', 'Ticket templates ODT/ODS directory for templates', 0),
112 4 => array('TICKET_AUTO_READ_WHEN_CREATED_FROM_BACKEND', 'chaine', 0, 'Automatically mark ticket as read when created from backend', 0),
113 5 => array('TICKET_DELAY_BEFORE_FIRST_RESPONSE', 'chaine', '0', 'Maximum wanted elapsed time before a first answer to a ticket (in hours). Display a warning in tickets list if not respected.', 0),
114 6 => array('TICKET_DELAY_SINCE_LAST_RESPONSE', 'chaine', '0', 'Maximum wanted elapsed time between two answers on the same ticket (in hours). Display a warning in tickets list if not respected.', 0),
115 7 => array('TICKET_NOTIFY_AT_CLOSING', 'chaine', '0', 'Default notify contacts when closing a module', 0),
116 8 => array('TICKET_PRODUCT_CATEGORY', 'chaine', 0, 'The category of product that is being used for ticket accounting', 0),
117 9 => array('TICKET_NOTIFICATION_EMAIL_FROM', 'chaine', getDolGlobalString('MAIN_MAIL_EMAIL_FROM'), 'Email to use by default as sender for messages sent from Dolibarr', 0),
118 10 => array('TICKET_MESSAGE_MAIL_INTRO', 'chaine', $langs->trans('TicketMessageMailIntroText'), 'Introduction text of ticket replies sent from Dolibarr', 0),
119 11 => array('TICKET_MESSAGE_MAIL_SIGNATURE', 'chaine', $default_footer, 'Signature to use by default for messages sent from Dolibarr', 0),
120 12 => array('MAIN_EMAILCOLLECTOR_MAIL_WITHOUT_HEADER', 'chaine', "1", 'Disable the rendering of headers in tickets', 0),
121 13 => array('MAIN_SECURITY_ENABLECAPTCHA_TICKET', 'chaine', getDolGlobalInt('MAIN_SECURITY_ENABLECAPTCHA_TICKET'), 'Enable captcha code by default', 0),
122 14 => array('TICKET_SHOW_COMPANY_LOGO', 'chaine', getDolGlobalInt('TICKET_SHOW_COMPANY_LOGO'), 'Enable logo header on ticket public page', 0)
123 );
124
125
126 $this->tabs = array(
127 'thirdparty:+ticket:Tickets:ticket:$user->rights->ticket->read:/ticket/list.php?socid=__ID__',
128 );
129
130 // Dictionaries
131 if (!isset($conf->ticket->enabled)) {
132 $conf->ticket = new stdClass();
133 $conf->ticket->enabled = 0;
134 }
135 $this->dictionaries = array(
136 'langs' => 'ticket',
137 'tabname' => array(
138 "c_ticket_type",
139 "c_ticket_severity",
140 "c_ticket_category",
141 "c_ticket_resolution"
142 ),
143 'tablib' => array(
144 "TicketDictType",
145 "TicketDictSeverity",
146 "TicketDictCategory",
147 "TicketDictResolution"
148 ),
149 'tabsql' => array(
150 'SELECT f.rowid as rowid, f.code, f.pos, f.label, f.active, f.use_default, f.entity FROM '.MAIN_DB_PREFIX.'c_ticket_type as f WHERE f.entity IN ('.getEntity('c_ticket_type').')',
151 'SELECT f.rowid as rowid, f.code, f.pos, f.label, f.active, f.use_default, f.entity FROM '.MAIN_DB_PREFIX.'c_ticket_severity as f WHERE f.entity IN ('.getEntity('c_ticket_severity').')',
152 'SELECT f.rowid as rowid, f.code, f.pos, f.label, f.active, f.use_default, f.public, f.fk_parent, f.entity FROM '.MAIN_DB_PREFIX.'c_ticket_category as f WHERE f.entity IN ('.getEntity('c_ticket_category').')',
153 'SELECT f.rowid as rowid, f.code, f.pos, f.label, f.active, f.use_default, f.entity FROM '.MAIN_DB_PREFIX.'c_ticket_resolution as f WHERE f.entity IN ('.getEntity('c_ticket_resolution').')'
154 ),
155 'tabsqlsort' => array("pos ASC", "pos ASC", "pos ASC", "pos ASC"),
156 'tabfield' => array("code,label,pos,use_default", "code,label,pos,use_default", "code,label,pos,use_default,public,fk_parent", "code,label,pos,use_default"),
157 'tabfieldvalue' => array("code,label,pos,use_default", "code,label,pos,use_default", "code,label,pos,use_default,public,fk_parent", "code,label,pos,use_default"),
158 'tabfieldinsert' => array("code,label,pos,use_default,entity", "code,label,pos,use_default,entity", "code,label,pos,use_default,public,fk_parent,entity", "code,label,pos,use_default,entity"),
159 'tabrowid' => array("rowid", "rowid", "rowid", "rowid"),
160 'tabcond' => array(isModEnabled("ticket"), isModEnabled("ticket"), isModEnabled("ticket"), isModEnabled("ticket") && getDolGlobalString('TICKET_ENABLE_RESOLUTION')),
161 'tabhelp' => array(
162 array('code'=>$langs->trans("EnterAnyCode"), 'use_default'=>$langs->trans("Enter0or1")),
163 array('code'=>$langs->trans("EnterAnyCode"), 'use_default'=>$langs->trans("Enter0or1")),
164 array('code'=>$langs->trans("EnterAnyCode"), 'use_default'=>$langs->trans("Enter0or1"), 'public'=>$langs->trans("Enter0or1").'<br>'.$langs->trans("TicketGroupIsPublicDesc"), 'fk_parent'=>$langs->trans("IfThisCategoryIsChildOfAnother")),
165 array('code'=>$langs->trans("EnterAnyCode"), 'use_default'=>$langs->trans("Enter0or1"))
166 ),
167 );
168
169 // Boxes
170 // Add here list of php file(s) stored in core/boxes that contains class to show a box.
171 $this->boxes = array(
172 0=>array('file'=>'box_last_ticket.php', 'enabledbydefaulton'=>'Home'),
173 1=>array('file'=>'box_last_modified_ticket.php', 'enabledbydefaulton'=>'Home'),
174 2=>array('file'=>'box_ticket_by_severity.php', 'enabledbydefaulton'=>'ticketindex'),
175 3=>array('file'=>'box_graph_nb_ticket_last_x_days.php', 'enabledbydefaulton'=>'ticketindex'),
176 4=>array('file'=>'box_graph_nb_tickets_type.php', 'enabledbydefaulton'=>'ticketindex'),
177 5=>array('file'=>'box_new_vs_close_ticket.php', 'enabledbydefaulton'=>'ticketindex')
178 ); // Boxes list
179
180 // Permissions
181 $this->rights = array(); // Permission array used by this module
182
183 $r = 0;
184 $this->rights[$r][0] = 56001; // id de la permission
185 $this->rights[$r][1] = "Read ticket"; // libelle de la permission
186 $this->rights[$r][2] = 'r'; // type de la permission (deprecie a ce jour)
187 $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
188 $this->rights[$r][4] = 'read';
189
190 $r++;
191 $this->rights[$r][0] = 56002; // id de la permission
192 $this->rights[$r][1] = "Create les tickets"; // libelle de la permission
193 $this->rights[$r][2] = 'w'; // type de la permission (deprecie a ce jour)
194 $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
195 $this->rights[$r][4] = 'write';
196
197 $r++;
198 $this->rights[$r][0] = 56003; // id de la permission
199 $this->rights[$r][1] = "Delete les tickets"; // libelle de la permission
200 $this->rights[$r][2] = 'd'; // type de la permission (deprecie a ce jour)
201 $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
202 $this->rights[$r][4] = 'delete';
203
204 $r++;
205 $this->rights[$r][0] = 56004; // id de la permission
206 $this->rights[$r][1] = "Manage tickets"; // libelle de la permission
207 //$this->rights[$r][2] = 'd'; // type de la permission (deprecie a ce jour)
208 $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
209 $this->rights[$r][4] = 'manage';
210
211 $r++;
212 $this->rights[$r][0] = 56006; // id de la permission
213 $this->rights[$r][1] = "Export ticket"; // libelle de la permission
214 //$this->rights[$r][2] = 'd'; // type de la permission (deprecie a ce jour)
215 $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
216 $this->rights[$r][4] = 'export';
217
218 /* Seems not used and in conflict with societe->client->voir (see all thirdparties)
219 $r++;
220 $this->rights[$r][0] = 56005; // id de la permission
221 $this->rights[$r][1] = 'See all tickets, even if not assigned to (not effective for external users, always restricted to the thirdpardy they depends on)'; // libelle de la permission
222 $this->rights[$r][2] = 'r'; // type de la permission (deprecie a ce jour)
223 $this->rights[$r][3] = 0; // La permission est-elle une permission par defaut
224 $this->rights[$r][4] = 'view';
225 $this->rights[$r][5] = 'all';
226 */
227
228 // Main menu entries
229 $this->menu = array(); // List of menus to add
230 $r = 0;
231
232 /*$this->menu[$r] = array('fk_menu' => 0, // Put 0 if this is a top menu
233 'type' => 'top', // This is a Top menu entry
234 'titre' => 'Ticket',
235 'prefix' => img_picto('', $this->picto, 'class="paddingright pictofixedwidth em092"'),
236 'mainmenu' => 'ticket',
237 'leftmenu' => '1', // Use 1 if you also want to add left menu entries using this descriptor.
238 'url' => '/ticket/index.php',
239 'langs' => 'ticket', // Lang file to use (without .lang) by module. File must be in langs/code_CODE/ directory.
240 'position' => 88,
241 'enabled' => 'isModEnabled("ticket")',
242 'perms' => '$user->rights->ticket->read', // Use 'perms'=>'$user->rights->ticket->level1->level2' if you want your menu with a permission rules
243 'target' => '',
244 'user' => 2); // 0=Menu for internal users, 1=external users, 2=both
245 $r++;*/
246
247 $this->menu[$r] = array('fk_menu' => 'fk_mainmenu=ticket',
248 'type' => 'left',
249 'titre' => 'Ticket',
250 'prefix' => img_picto('', $this->picto, 'class="paddingright pictofixedwidth em092"'),
251 'mainmenu' => 'ticket',
252 'leftmenu' => 'ticket',
253 'url' => '/ticket/index.php',
254 'langs' => 'ticket',
255 'position' => 101,
256 'enabled' => 'isModEnabled("ticket")',
257 'perms' => '$user->rights->ticket->read',
258 'target' => '',
259 'user' => 2);
260 $r++;
261
262 $this->menu[$r] = array('fk_menu' => 'fk_mainmenu=ticket,fk_leftmenu=ticket',
263 'type' => 'left',
264 'titre' => 'NewTicket',
265 'mainmenu' => 'ticket',
266 'url' => '/ticket/card.php?action=create',
267 'langs' => 'ticket',
268 'position' => 102,
269 'enabled' => 'isModEnabled("ticket")',
270 'perms' => '$user->rights->ticket->write',
271 'target' => '',
272 'user' => 2);
273 $r++;
274
275 $this->menu[$r] = array('fk_menu' => 'fk_mainmenu=ticket,fk_leftmenu=ticket',
276 'type' => 'left',
277 'titre' => 'List',
278 'mainmenu' => 'ticket',
279 'leftmenu' => 'ticketlist',
280 'url' => '/ticket/list.php?search_fk_status=non_closed',
281 'langs' => 'ticket',
282 'position' => 103,
283 'enabled' => 'isModEnabled("ticket")',
284 'perms' => '$user->rights->ticket->read',
285 'target' => '',
286 'user' => 2);
287 $r++;
288
289 $this->menu[$r] = array('fk_menu' => 'fk_mainmenu=ticket,fk_leftmenu=ticket',
290 'type' => 'left',
291 'titre' => 'MenuTicketMyAssign',
292 'mainmenu' => 'ticket',
293 'leftmenu' => 'ticketmy',
294 'url' => '/ticket/list.php?mode=mine&search_fk_status=non_closed',
295 'langs' => 'ticket',
296 'position' => 105,
297 'enabled' => 'isModEnabled("ticket")',
298 'perms' => '$user->rights->ticket->read',
299 'target' => '',
300 'user' => 0);
301 $r++;
302
303 $this->menu[$r] = array('fk_menu' => 'fk_mainmenu=ticket,fk_leftmenu=ticket',
304 'type' => 'left',
305 'titre' => 'Statistics',
306 'mainmenu' => 'ticket',
307 'url' => '/ticket/stats/index.php',
308 'langs' => 'ticket',
309 'position' => 107,
310 'enabled' => 'isModEnabled("ticket")',
311 'perms' => '$user->rights->ticket->read',
312 'target' => '',
313 'user' => 0);
314 $r++;
315
316 $this->menu[$r] = array('fk_menu' => 'fk_mainmenu=ticket,fk_leftmenu=ticket',
317 'type' => 'left',
318 'titre' => 'Categories',
319 'mainmenu' => 'ticket',
320 'url' => '/categories/index.php?type=12',
321 'langs' => 'ticket',
322 'position' => 107,
323 'enabled' => '$conf->categorie->enabled',
324 'perms' => '$user->rights->ticket->read',
325 'target' => '',
326 'user' => 0);
327 $r++;
328
329 // Exports
330 //--------
331 $r = 1;
332
333 // Export list of tickets and attributes
334 $langs->load("ticket");
335 $this->export_code[$r]=$this->rights_class.'_'.$r;
336 $this->export_label[$r]='ExportDataset_ticket_1'; // Translation key (used only if key ExportDataset_xxx_z not found)
337 $this->export_permission[$r] = array(array("ticket", "export"));
338 $this->export_icon[$r]='ticket';
339 $keyforclass = 'Ticket';$keyforclassfile='/ticket/class/ticket.class.php';$keyforelement='ticket';
340 include DOL_DOCUMENT_ROOT.'/core/commonfieldsinexport.inc.php';
341 $keyforselect='ticket'; $keyforaliasextra='extra'; $keyforelement='ticket';
342 include DOL_DOCUMENT_ROOT.'/core/extrafieldsinexport.inc.php';
343 $this->export_sql_start[$r]='SELECT DISTINCT ';
344 $this->export_sql_end[$r] =' FROM '.MAIN_DB_PREFIX.'ticket as t';
345 $this->export_sql_end[$r] .= ' LEFT JOIN '.MAIN_DB_PREFIX.'ticket_extrafields as extra on (t.rowid = extra.fk_object)';
346 $this->export_sql_end[$r] .=' WHERE 1 = 1';
347 $this->export_sql_end[$r] .=' AND t.entity IN ('.getEntity('ticket').')';
348 $r++;
349 }
350
359 public function init($options = '')
360 {
361 global $conf, $langs;
362
363 $result = $this->_load_tables('/install/mysql/', 'ticket');
364 if ($result < 0) {
365 return -1; // Do not activate module if error 'not allowed' returned when loading module SQL queries (the _load_table run sql with run_sql with the error allowed parameter set to 'default')
366 }
367
368 // Permissions
369 $this->remove($options);
370
371 //ODT template
372 $src = DOL_DOCUMENT_ROOT.'/install/doctemplates/tickets/template_ticket.odt';
373 $dirodt = DOL_DATA_ROOT.'/doctemplates/tickets';
374 $dest = $dirodt.'/template_order.odt';
375
376 if (file_exists($src) && !file_exists($dest)) {
377 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
378 dol_mkdir($dirodt);
379 $result = dol_copy($src, $dest, 0, 0);
380 if ($result < 0) {
381 $langs->load("errors");
382 $this->error = $langs->trans('ErrorFailToCopyFile', $src, $dest);
383 return 0;
384 }
385 }
386
387 $sql = array(
388 array("sql" => "insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (110120, 'ticket', 'internal', 'SUPPORTTEC', 'Utilisateur assigné au ticket', 1);", "ignoreerror" => 1),
389 array("sql" => "insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (110121, 'ticket', 'internal', 'CONTRIBUTOR', 'Intervenant', 1);", "ignoreerror" => 1),
390 array("sql" => "insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (110122, 'ticket', 'external', 'SUPPORTCLI', 'Contact client suivi incident', 1);", "ignoreerror" => 1),
391 array("sql" => "insert into llx_c_type_contact(rowid, element, source, code, libelle, active ) values (110123, 'ticket', 'external', 'CONTRIBUTOR', 'Intervenant', 1);", "ignoreerror" => 1),
392 "DELETE FROM ".MAIN_DB_PREFIX."document_model WHERE nom = 'TICKET_ADDON_PDF_ODT_PATH' AND type = 'ticket' AND entity = ".((int) $conf->entity),
393 "INSERT INTO ".MAIN_DB_PREFIX."document_model (nom, type, entity) VALUES('TICKET_ADDON_PDF_ODT_PATH','ticket',".((int) $conf->entity).")"
394 );
395
396 return $this->_init($sql, $options);
397 }
398}
Class DolibarrModules.
_init($array_sql, $options='')
Enables a module.
_load_tables($reldir, $onlywithsuffix='')
Create tables and keys required by module:
Description and activation class for module Ticket.
init($options='')
Function called when module is enabled.
__construct($db)
Constructor.
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
dol_copy($srcfile, $destfile, $newmask=0, $overwriteifexists=1, $testvirus=0, $indexdatabase=0)
Copy a file to another file.
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)
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:123