dolibarr 23.0.3
card.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2017 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2010-2014 Juanjo Menent <jmenent@2byte.es>
5 * Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
6 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
7 * Copyright (C) 2024-2025 Frédéric France <frederic.france@free.fr>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <https://www.gnu.org/licenses/>.
21 */
22
29// Load Dolibarr environment
30require '../../main.inc.php';
31require_once DOL_DOCUMENT_ROOT.'/core/class/notify.class.php';
32require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
33require_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
34require_once DOL_DOCUMENT_ROOT.'/core/triggers/interface_50_modNotification_Notification.class.php';
35
44$langs->loadLangs(array("companies", "mails", "admin", "other", "errors"));
45
46$socid = GETPOSTINT("socid");
47$action = GETPOST('action', 'aZ09');
48$contactid = GETPOST('contactid', 'alpha'); // May be an int or 'thirdparty'
49$actionid = GETPOSTINT('actionid');
50$optioncss = GETPOST('optioncss', 'aZ'); // Option for the css output (always '' except when 'print')
51
52// Security check
53if ($user->socid) {
54 $socid = $user->socid;
55}
56
57// Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context
58$hookmanager->initHooks(array('thirdpartynotification', 'globalcard'));
59
60$result = restrictedArea($user, 'societe', '', '');
61
62$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
63$sortfield = GETPOST('sortfield', 'aZ09comma');
64$sortorder = GETPOST('sortorder', 'aZ09comma');
65$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
66if (!$sortorder) {
67 $sortorder = "DESC";
68}
69if (!$sortfield) {
70 $sortfield = "n.daten";
71}
72if (empty($page) || $page == -1) {
73 $page = 0;
74}
75$offset = $limit * $page;
76$pageprev = $page - 1;
77$pagenext = $page + 1;
78
79$now = dol_now();
80
81// Security check
82$object = new Societe($db);
83
84$permissiontoadd = $user->hasRight('societe', 'lire');
85
86
87/*
88 * Actions
89 */
90
91if (GETPOST('cancel', 'alpha')) {
92 $action = 'list';
93}
94
95$parameters = array('id' => $socid);
96$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
97if ($reshook < 0) {
98 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
99}
100
101if (empty($reshook)) {
102 $error = 0;
103
104 // Add a notification
105 if ($action == 'add' && $permissiontoadd) {
106 if (empty($contactid)) {
107 setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Contact")), null, 'errors');
108 $error++;
109 }
110 if ($actionid <= 0) {
111 setEventMessages($langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("Action")), null, 'errors');
112 $error++;
113 $action = 'create';
114 }
115
116 if (!$error) {
117 $db->begin();
118
119 $sql = "DELETE FROM ".MAIN_DB_PREFIX."notify_def";
120 $sql .= " WHERE fk_soc=".((int) $socid)." AND fk_contact=".((int) $contactid)." AND fk_action = ".((int) $actionid);
121 if ($db->query($sql)) {
122 $sql = "INSERT INTO ".MAIN_DB_PREFIX."notify_def (datec,fk_soc, fk_contact, fk_action)";
123 $sql .= " VALUES ('".$db->idate($now)."', ".((int) $socid).",".((int) $contactid).",".((int) $actionid).")";
124
125 if (!$db->query($sql)) {
126 $error++;
127 dol_print_error($db);
128 }
129 } else {
130 dol_print_error($db);
131 }
132
133 if (!$error) {
134 $db->commit();
135 } else {
136 $db->rollback();
137 $action = 'create';
138 }
139 }
140 }
141
142 // Remove a notification
143 if ($action == 'delete' && $permissiontoadd) {
144 $sql = "DELETE FROM ".MAIN_DB_PREFIX."notify_def where rowid = ".GETPOSTINT('actid');
145 $db->query($sql);
146 }
147}
148
149
150
151/*
152 * View
153 */
154
155$form = new Form($db);
156
157$object = new Societe($db);
158$result = $object->fetch($socid);
159
160$title = $langs->trans("ThirdParty").' - '.$langs->trans("Notification");
161if (getDolGlobalString('MAIN_HTML_TITLE') && preg_match('/thirdpartynameonly/', getDolGlobalString('MAIN_HTML_TITLE')) && $object->name) {
162 $title = $object->name.' - '.$langs->trans("Notification");
163}
164$help_url = 'EN:Module_Third_Parties|FR:Module_Tiers|ES:Empresas';
165
166llxHeader('', $title, $help_url);
167
168
169if ($result > 0) {
170 $langs->load("other");
171
172 $head = societe_prepare_head($object);
173
174 print dol_get_fiche_head($head, 'notify', $langs->trans("ThirdParty"), -1, 'company');
175
176 $linkback = '<a href="'.DOL_URL_ROOT.'/societe/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
177
178 dol_banner_tab($object, 'socid', $linkback, ($user->socid ? 0 : 1), 'rowid', 'nom');
179
180 print '<div class="fichecenter">';
181
182 print '<div class="underbanner clearboth"></div>';
183 print '<table class="border centpercent tableforfield">';
184
185 // Type Prospect/Customer/Supplier
186 print '<tr><td class="titlefield">'.$langs->trans('NatureOfThirdParty').'</td><td>';
187 print $object->getTypeUrl(1);
188 print '</td></tr>';
189
190 if ($object->client) {
191 print '<tr><td class="titlefield">';
192 print $langs->trans('CustomerCode').'</td><td colspan="3">';
194 $tmpcheck = $object->check_codeclient();
195 if ($tmpcheck != 0 && $tmpcheck != -5) {
196 print ' <span class="error">('.$langs->trans("WrongCustomerCode").')</span>';
197 }
198 print '</td></tr>';
199 }
200
201 if ((isModEnabled("supplier_order") || isModEnabled("supplier_invoice")) && $object->fournisseur && $user->hasRight('fournisseur', 'lire')) {
202 print '<tr><td class="titlefield">';
203 print $langs->trans('SupplierCode').'</td><td colspan="3">';
205 $tmpcheck = $object->check_codefournisseur();
206 if ($tmpcheck != 0 && $tmpcheck != -5) {
207 print ' <span class="error">('.$langs->trans("WrongSupplierCode").')</span>';
208 }
209 print '</td>';
210 }
211 print '</tr>'."\n";
212
213 /*print '<tr><td class="titlefield">'.$langs->trans("NbOfActiveNotifications").'</td>'; // Notification for this thirdparty
214 print '<td colspan="3">';
215 $nbofrecipientemails=0;
216 $notify=new Notify($db);
217 $tmparray = $notify->getNotificationsArray('', $object->id, null, 0, array('thirdparty'));
218 foreach($tmparray as $tmpkey => $tmpval)
219 {
220 if (!empty($tmpkey)) $nbofrecipientemails++;
221 }
222 print $nbofrecipientemails;
223 print '</td></tr>';*/
224
225 print '</table>';
226
227 print '</div>';
228
229 print dol_get_fiche_end();
230
231 print "\n";
232
233 // Help
234 print '<div class="opacitymedium hideonsmartphone">';
235 print $langs->trans("NotificationsDesc");
236 print '<br>'.$langs->trans("NotificationsDescUser");
237 print '<br>'.$langs->trans("NotificationsDescContact").' - '.$langs->trans("YouAreHere");
238 print '<br>'.$langs->trans("NotificationsDescGlobal");
239 print '<br>';
240 print '</div>';
241
242 print '<br><br>'."\n";
243
244
245 // Add notification form
246
247 print '<form action="'.$_SERVER["PHP_SELF"].'?socid='.urlencode((string) $socid).'" method="POST">';
248 print '<input type="hidden" name="token" value="'.newToken().'">';
249 print '<input type="hidden" name="page_y" value="">';
250 if ($action == 'create') {
251 print '<input type="hidden" name="action" id="action" value="add">';
252 }
253
254 $nbtotalofrecords = '';
255
256 // List of notifications enabled for contacts of the thirdparty
257 $sql = "SELECT n.rowid, n.type,";
258 $sql .= " a.code, a.label,";
259 $sql .= " c.rowid as contactid, c.lastname, c.firstname, c.email";
260 $sql .= " FROM ".MAIN_DB_PREFIX."c_action_trigger as a,";
261 $sql .= " ".MAIN_DB_PREFIX."notify_def as n,";
262 $sql .= " ".MAIN_DB_PREFIX."socpeople as c";
263 $sql .= " WHERE a.rowid = n.fk_action";
264 $sql .= " AND c.rowid = n.fk_contact";
265 $sql .= " AND c.fk_soc = ".((int) $object->id);
266
267 $resql = $db->query($sql);
268 if ($resql) {
269 $nbtotalofrecords = $db->num_rows($resql);
270 } else {
271 dol_print_error($db);
272 }
273
274 $param = "&socid=".$socid;
275
276 $newcardbutton = '';
277 $newcardbutton .= dolGetButtonTitle($langs->trans('New'), '', 'fa fa-plus-circle', $_SERVER["PHP_SELF"].'?socid='.$object->id.'&action=create&backtopage='.urlencode($_SERVER['PHP_SELF']), '', $user->hasRight("societe", "creer"));
278
279 $titlelist = $form->textwithpicto($langs->trans("ListOfActiveNotifications"), $langs->trans("ListOfActiveNotificationsHelp", $langs->transnoentitiesnoconv("Target"), $langs->transnoentitiesnoconv("Event")));
280
281 $num = $nbtotalofrecords;
282
283 $limitforsubscription = 0; // We show all subscription of user. Pagination will be reserved for the section of notifications sent.
284 // List of active notifications
285 // @phan-suppress-next-line PhanPluginSuspiciousParamPosition, PhanPluginSuspiciousParamOrder
286 print_barre_liste($titlelist, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, (empty($nbtotalofrecords) ? -1 : $nbtotalofrecords), 'email', 0, $newcardbutton, '', $limitforsubscription, 0, 0, 1);
287
288 // Line with titles
289 print '<div class="div-table-responsive-no-min">';
290 print '<table class="noborder centpercent">';
291 print '<tr class="liste_titre">';
292 print_liste_field_titre("Target", $_SERVER["PHP_SELF"], "c.lastname,c.firstname", '', $param, 'width="45%"', $sortfield, $sortorder);
293 print_liste_field_titre("Event", $_SERVER["PHP_SELF"], "", '', $param, 'width="35%"', $sortfield, $sortorder);
294 print_liste_field_titre("Type", $_SERVER["PHP_SELF"], "n.type", '', $param, 'width="10%"', $sortfield, $sortorder);
296 print "</tr>\n";
297
298 // Line to add a new subscription
299 if ($action == 'create') {
300 $listofemails = $object->thirdparty_and_contact_email_array();
301 if (count($listofemails) > 0) {
302 $actions = array();
303
304 // Load array of available notifications
305 $notificationtrigger = new InterfaceNotification($db);
306 $listofmanagedeventfornotification = $notificationtrigger->getListOfManagedEvents();
307
308 foreach ($listofmanagedeventfornotification as $managedeventfornotification) {
309 $label = ($langs->trans("Notify_".$managedeventfornotification['code']) != "Notify_".$managedeventfornotification['code'] ? $langs->trans("Notify_".$managedeventfornotification['code']) : $managedeventfornotification['label']);
310 $actions[$managedeventfornotification['rowid']] = $label;
311 }
312
313 $newlistofemails = array();
314 foreach ($listofemails as $tmpkey => $tmpval) {
315 $labelhtml = str_replace(array('<', '>'), array(' - <span class="opacitymedium">', '</span>'), $tmpval);
316 $newlistofemails[$tmpkey] = array('label' => dol_string_nohtmltag($tmpval), 'id' => $tmpkey, 'data-html' => $labelhtml);
317 }
318
319 print '<tr class="oddeven nohover">';
320 print '<td class="nowraponall">';
321 print img_picto('', 'contact', '', 0, 0, 0, '', 'paddingright');
322 print $form->selectarray("contactid", $newlistofemails, '', 1, 0, 0, '', 0, 0, 0, '', 'minwidth100imp maxwidthonsmartphone');
323 print '</td>';
324 print '<td class="tdoverflowmax200">';
325 print img_picto('', 'object_action', '', 0, 0, 0, '', 'paddingright');
326 print $form->selectarray("actionid", $actions, '', 1, 0, 0, '', 0, 0, 0, '', 'minwidth100imp maxwidthonsmartphone');
327 print '</td>';
328 print '<td>';
329 $type = array('email' => $langs->trans("EMail"));
330 print $form->selectarray("typeid", $type, '', 0, 0, 0, '', 0, 0, 0, '', 'minwidth75imp');
331 print '</td>';
332 print '<td class="right nowraponall">';
333 print '<input type="submit" class="button button-add small" value="'.$langs->trans("Add").'">';
334 print '&nbsp;';
335 print '<input type="submit" class="button button-cancel small" name="cancel" value="'.$langs->trans("Cancel").'">';
336 print '</td>';
337 print '</tr>';
338 } else {
339 print '<tr class="oddeven"><td colspan="4" class="opacitymedium">';
340 print $langs->trans("YouMustCreateContactFirst");
341 print '</td></tr>';
342 }
343 } else {
344 if ($num) {
345 $i = 0;
346
347 $contactstatic = new Contact($db);
348
349 while ($i < $num) {
350 $obj = $db->fetch_object($resql);
351
352 $contactstatic->id = $obj->contactid;
353 $contactstatic->lastname = $obj->lastname;
354 $contactstatic->firstname = $obj->firstname;
355
356 print '<tr class="oddeven">';
357 print '<td>'.$contactstatic->getNomUrl(1);
358 if ($obj->type == 'email') {
359 if (isValidEmail($obj->email)) {
360 print ' &lt;'.$obj->email.'&gt;';
361 } else {
362 $langs->load("errors");
363 print ' &nbsp; '.img_warning().' <span class="warning">'.$langs->trans("ErrorBadEMail", $obj->email).'</span>';
364 }
365 }
366 print '</td>';
367
368 $label = ($langs->trans("Notify_".$obj->code) != "Notify_".$obj->code ? $langs->trans("Notify_".$obj->code) : $obj->label);
369 print '<td class="tdoverflowmax200" title="'.dol_escape_htmltag($label).'">';
370 print img_picto('', 'object_action', '', 0, 0, 0, '', 'pictofixedwidth').$label;
371 print '</td>';
372 print '<td>';
373 if ($obj->type == 'email') {
374 print $langs->trans("Email");
375 }
376 if ($obj->type == 'sms') {
377 print $langs->trans("SMS");
378 }
379 print '</td>';
380 print '<td class="right"><a href="card.php?socid='.$socid.'&action=delete&token='.newToken().'&actid='.$obj->rowid.'">'.img_delete().'</a></td>';
381 print '</tr>';
382 $i++;
383 }
384 $db->free($resql);
385 } else {
386 print '<tr><td colspan="4"><span class="opacitymedium">'.$langs->trans("None").'</span></td></tr>';
387 }
388 }
389
390
391
392 print '</table>';
393 print '</div>';
394 print '</form>';
395
396 print '<br><br>'."\n";
397
398
399 // List
400 $sql = "SELECT n.rowid, n.daten, n.email, n.objet_type as object_type, n.objet_id as object_id, n.type,";
401 $sql .= " c.rowid as id, c.lastname, c.firstname, c.email as contactemail,";
402 $sql .= " a.code, a.label";
403 $sql .= " FROM ".MAIN_DB_PREFIX."c_action_trigger as a,";
404 $sql .= " ".MAIN_DB_PREFIX."notify as n ";
405 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."socpeople as c ON n.fk_contact = c.rowid";
406 $sql .= " WHERE a.rowid = n.fk_action";
407 $sql .= " AND n.fk_soc = ".((int) $object->id);
408 $sql .= $db->order($sortfield, $sortorder);
409
410 // Count total nb of records
411 $nbtotalofrecords = '';
412 if (!getDolGlobalInt('MAIN_DISABLE_FULL_SCANLIST')) {
413 $result = $db->query($sql);
414 $nbtotalofrecords = $db->num_rows($result);
415 if (($page * $limit) > (int) $nbtotalofrecords) { // if total resultset is smaller then paging size (filtering), goto and load page 0
416 $page = 0;
417 $offset = 0;
418 }
419 }
420
421 $sql .= $db->plimit($limit + 1, $offset);
422
423 $resql = $db->query($sql);
424 if ($resql) {
425 $num = $db->num_rows($resql);
426 } else {
427 dol_print_error($db);
428 }
429
430 $param = '&socid='.$object->id;
431 if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
432 $param .= '&contextpage='.$contextpage;
433 }
434 if ($limit > 0 && $limit != $conf->liste_limit) {
435 $param .= '&limit='.$limit;
436 }
437
438 print '<form method="post" action="'.$_SERVER["PHP_SELF"].'" name="formfilter">';
439 if ($optioncss != '') {
440 print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
441 }
442 print '<input type="hidden" name="token" value="'.newToken().'">';
443 print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
444 print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
445 print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
446 print '<input type="hidden" name="page" value="'.$page.'">';
447 print '<input type="hidden" name="socid" value="'.$object->id.'">';
448
449 $titlelist = $form->textwithpicto($langs->trans("ListOfNotificationsDone"), $langs->trans("ListOfNotificationsDoneHelp"));
450
451 // List of active notifications @phan-suppress-next-line PhanPluginSuspiciousParamOrder
452 print_barre_liste($titlelist, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, empty($nbtotalofrecords) ? -1 : $nbtotalofrecords, 'email', 0, '', '', $limit, '');
453
454 // Line with titles
455 print '<div class="div-table-responsive-no-min">';
456 print '<table class="centpercent noborder">';
457 print '<tr class="liste_titre">';
458 print_liste_field_titre("Target", $_SERVER["PHP_SELF"], "c.lastname,c.firstname", '', $param, '', $sortfield, $sortorder);
459 print_liste_field_titre("Event", $_SERVER["PHP_SELF"], "", '', $param, '', $sortfield, $sortorder);
460 print_liste_field_titre("Type", $_SERVER["PHP_SELF"], "n.type", '', $param, '', $sortfield, $sortorder);
461 //print_liste_field_titre("Object",$_SERVER["PHP_SELF"],"",'',$param,'"',$sortfield,$sortorder);
462 print_liste_field_titre("Date", $_SERVER["PHP_SELF"], "n.daten", '', $param, '', $sortfield, $sortorder, 'right ');
463 print '</tr>';
464
465 if ($num > 0) {
466 $i = 0;
467
468 $contactstatic = new Contact($db);
469
470 while ($i < $num) {
471 $obj = $db->fetch_object($resql);
472
473 print '<tr class="oddeven"><td>';
474 if ($obj->id > 0) {
475 $contactstatic->id = $obj->id;
476 $contactstatic->lastname = $obj->lastname;
477 $contactstatic->firstname = $obj->firstname;
478 print $contactstatic->getNomUrl(1);
479 print $obj->email ? ' &lt;'.$obj->email.'&gt;' : $langs->trans("NoMail");
480 } else {
481 print $obj->email;
482 }
483 print '</td>';
484 print '<td>';
485 $label = ($langs->trans("Notify_".$obj->code) != "Notify_".$obj->code ? $langs->trans("Notify_".$obj->code) : $obj->label);
486 print $label;
487 print '</td>';
488 print '<td>';
489 if ($obj->type == 'email') {
490 print $langs->trans("Email");
491 }
492 if ($obj->type == 'sms') {
493 print $langs->trans("Sms");
494 }
495 print '</td>';
496 // TODO Add link to object here for other types
497 /*print '<td>';
498 if ($obj->object_type == 'order')
499 {
500 $orderstatic->id=$obj->object_id;
501 $orderstatic->ref=...
502 print $orderstatic->getNomUrl(1);
503 }
504 print '</td>';*/
505 // print
506 print'<td class="right">'.dol_print_date($db->jdate($obj->daten), 'dayhour').'</td>';
507 print '</tr>';
508 $i++;
509 }
510 $db->free($resql);
511 } else {
512 print '<tr><td colspan="4"><span class="opacitymedium">'.$langs->trans("None").'</span></td></tr>';
513 }
514
515 print '</table>';
516 print '</div>';
517
518 print '</form>';
519} else {
520 recordNotFound('', 0);
521}
522
523// End of page
524llxFooter();
525$db->close();
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
Definition wrapper.php:91
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:73
Class to manage contact/addresses.
Class to manage generation of HTML components Only common components must be here.
Class of triggers for notification module.
Class to manage third parties objects (customers, suppliers, prospects...)
societe_prepare_head(Societe $object)
Return array of tabs to used on pages for third parties cards.
dol_now($mode='gmt')
Return date for now.
recordNotFound($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Displays an error page when a record is not found.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
print_liste_field_titre($name, $file="", $field="", $begin="", $param="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $selectlimitsuffix=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
showValueWithClipboardCPButton($valuetocopy, $showonlyonhover=1, $texttoshow='')
Create a button to copy $valuetocopy in the clipboard (for copy and paste feature).
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
Show picto whatever it's its name (generic function)
img_delete($titlealt='default', $other='class="pictodelete"', $morecss='')
Show delete logo.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0, $morecssdiv='')
Show tabs of a record.
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto='UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
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.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
isValidEmail($address, $acceptsupervisorkey=0, $acceptuserkey=0)
Return true if email syntax is ok.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
dol_escape_htmltag($stringtoescape, $keepb=0, $keepn=0, $noescapetags='', $escapeonlyhtmltags=0, $cleanalsojavascript=0)
Returns text escaped for inclusion in HTML alt or title or value tags, or into values of HTML input f...
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.