dolibarr 22.0.5
targetemailing.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2005-2024 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2010 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2014 Florian Henry <florian.henry@open-concept.pro>
6 * Copyright (C) 2024-2025 MDW <mdeweerd@users.noreply.github.com>
7 * Copyright (C) 2024 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/modules/mailings/modules_mailings.php';
32require_once DOL_DOCUMENT_ROOT.'/comm/mailing/class/mailing.class.php';
33require_once DOL_DOCUMENT_ROOT.'/core/class/html.formmailing.class.php';
34require_once DOL_DOCUMENT_ROOT.'/core/lib/emailing.lib.php';
35require_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
36require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
37require_once DOL_DOCUMENT_ROOT.'/core/lib/ajax.lib.php';
38
39
48// Load translation files required by the page
49$langs->loadLangs(array("mails", "admin"));
50
51$action = GETPOST('action', 'aZ09');
52$toselect = GETPOST('toselect', 'array'); // Array of ids of elements selected into a list
53$massaction = GETPOST('massaction', 'alpha'); // The bulk action (combo box choice into lists)
54$mode = GETPOST('mode', 'aZ'); // The display mode ('list', 'kanban', 'hierarchy', 'calendar', 'gantt', ...)
55
56// Load variable for pagination
57$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
58$sortfield = GETPOST('sortfield', 'aZ09comma');
59$sortorder = GETPOST('sortorder', 'aZ09comma');
60$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
61if (empty($page) || $page == -1) {
62 $page = 0;
63} // If $page is not defined, or '' or -1
64$offset = $limit * $page;
65$pageprev = $page - 1;
66$pagenext = $page + 1;
67if (!$sortfield) {
68 $sortfield = "mc.statut,email";
69}
70if (!$sortorder) {
71 $sortorder = "DESC,ASC";
72}
73
74$id = GETPOSTINT('id');
75$rowid = GETPOSTINT('rowid');
76$search_lastname = GETPOST("search_lastname", 'alphanohtml');
77$search_firstname = GETPOST("search_firstname", 'alphanohtml');
78$search_email = GETPOST("search_email", 'alphanohtml');
79$search_other = GETPOST("search_other", 'alphanohtml');
80$search_dest_status = GETPOST('search_dest_status', 'int');
81
82// Search modules dirs
83$modulesdir = dolGetModulesDirs('/mailings');
84
85$object = new Mailing($db);
86$result = $object->fetch($id);
87
88// Initialize a technical object to manage hooks of page. Note that conf->hooks_modules contains an array of hook context
89$hookmanager->initHooks(array('ciblescard', 'globalcard'));
90
91$sqlmessage = '';
92$mesgs = array();
93
94// List of sending methods
95$listofmethods = array();
96//$listofmethods['default'] = $langs->trans('DefaultOutgoingEmailSetup');
97$listofmethods['mail'] = 'PHP mail function';
98//$listofmethods['simplemail']='Simplemail class';
99$listofmethods['smtps'] = 'SMTP/SMTPS socket library';
100if (version_compare(phpversion(), '7.0', '>=')) {
101 $listofmethods['swiftmailer'] = 'Swift Mailer socket library';
102}
103
104// Security check
105if (!$user->hasRight('mailing', 'lire') || (!getDolGlobalString('EXTERNAL_USERS_ARE_AUTHORIZED') && $user->socid > 0)) {
107}
108if (empty($action) && empty($object->id)) {
109 accessforbidden('Object not found');
110}
111
112$permissiontoread = $user->hasRight('mailing', 'lire');
113$permissiontocreate = $user->hasRight('mailing', 'creer');
114$permissiontovalidatesend = $user->hasRight('mailing', 'valider');
115$permissiontodelete = $user->hasRight('mailing', 'supprimer');
116
117
118/*
119 * Actions
120 */
121if (GETPOST('cancel', 'alpha')) {
122 $action = 'list';
123 $massaction = '';
124}
125if (!GETPOST('confirmmassaction', 'alpha')) {
126 $massaction = '';
127}
128
129if ($action == 'add' && $permissiontocreate) { // Add recipients
130 $module = GETPOST("module", 'alpha');
131 $result = -1;
132 $obj = null;
133
134 foreach ($modulesdir as $dir) {
135 // Load modules attributes in arrays (name, numero, orders) from dir directory
136 //print $dir."\n<br>";
137 dol_syslog("Scan directory ".$dir." for modules");
138
139 // Loading Class
140 $file = $dir."/".$module.".modules.php";
141 $classname = "mailing_".$module;
142
143 if (file_exists($file)) {
144 include_once $file;
145
146 // Add targets into database
147 dol_syslog("Call add_to_target() on class ".$classname." evenunsubscribe=".$object->evenunsubscribe);
148
149 $obj = null;
150 if (class_exists($classname)) {
151 $obj = new $classname($db);
152 '@phan-var-force MailingTargets $obj';
153 $obj->evenunsubscribe = $object->evenunsubscribe;
154
155 $result = $obj->add_to_target($id);
156
157 $sqlmessage = $obj->sql;
158 } else {
159 $result = -1;
160 break;
161 }
162 }
163 }
164 if ($result > 0) {
165 // If status of emailing is sent completely, change to to send partially
166 if ($object->status == $object::STATUS_SENTCOMPLETELY) {
167 $object->setStatut($object::STATUS_SENTPARTIALY);
168 }
169
170 setEventMessages($langs->trans("XTargetsAdded", $result), null, 'mesgs');
171 $action = '';
172 }
173 if ($result == 0) {
174 setEventMessages($langs->trans("WarningNoEMailsAdded"), null, 'warnings');
175 }
176 if ($result < 0 && is_object($obj)) {
177 setEventMessages($langs->trans("Error").($obj->error ? ' '.$obj->error : ''), null, 'errors');
178 }
179}
180
181if (GETPOSTINT('clearlist') && $permissiontocreate) {
182 // Loading Class
183 $obj = new MailingTargets($db);
184 $obj->clear_target($id);
185 /* Avoid this to allow reposition
186 header("Location: ".$_SERVER['PHP_SELF']."?id=".$id);
187 exit;
188 */
189}
190
191if (GETPOSTINT('exportcsv') && $permissiontoread) { // @phpstan-ignore-line
192 $completefilename = 'targets_emailing'.$object->id.'_'.dol_print_date(dol_now(), 'dayhourlog').'.csv';
193 header('Content-Type: text/csv');
194 header('Content-Disposition: attachment;filename='.$completefilename);
195
196 // List of selected targets
197 $sql = "SELECT mc.rowid, mc.lastname, mc.firstname, mc.email, mc.other, mc.statut as status, mc.date_envoi, mc.tms,";
198 $sql .= " mc.source_id, mc.source_type, mc.error_text";
199 $sql .= " FROM ".MAIN_DB_PREFIX."mailing_cibles as mc";
200 $sql .= " WHERE mc.fk_mailing = ".((int) $object->id);
201 $sql .= $db->order($sortfield, $sortorder);
202
203 $resql = $db->query($sql);
204 if ($resql) {
205 $num = $db->num_rows($resql);
206 $sep = ',';
207
208 while ($obj = $db->fetch_object($resql)) {
209 print $obj->rowid.$sep;
210 print '"'.$obj->lastname.'"'.$sep;
211 print '"'.$obj->firstname.'"'.$sep;
212 print $obj->email.$sep;
213 print $obj->other.$sep;
214 print $obj->tms.$sep;
215 print $obj->source_type.$sep;
216 print $obj->source_id.$sep;
217 print $obj->date_envoi.$sep;
218 print $obj->status.$sep;
219 print '"'.$obj->error_text.'"'.$sep;
220 print "\n";
221 }
222
223 exit;
224 } else {
225 dol_print_error($db);
226 }
227 exit;
228}
229
230if ($action == 'delete' && $permissiontocreate) {
231 // Ici, rowid indique le destinataire et id le mailing
232 $sql = "DELETE FROM ".MAIN_DB_PREFIX."mailing_cibles WHERE rowid = ".((int) $rowid);
233 $resql = $db->query($sql);
234 if ($resql) {
235 if (!empty($id)) {
236 $obj = new MailingTargets($db);
237 $obj->update_nb($id);
238
239 setEventMessages($langs->trans("RecordDeleted"), null, 'mesgs');
240 } else {
241 header("Location: list.php");
242 exit;
243 }
244 } else {
245 dol_print_error($db);
246 }
247}
248
249if ($action == "confirm_reset_target" && $permissiontocreate) {
250 if ($object->id > 0) {
251 $db->begin();
252 $nbok = 0;
253 $error = 0;
254 foreach ($toselect as $toselectid) {
255 $result = $object->resetTargetErrorStatus($user, $toselectid);
256 if ($result < 0) {
257 setEventMessages($object->error, $object->errors, 'errors');
258 $error++;
259 break;
260 } elseif ($result > 0) {
261 $nbok++;
262 } else {
263 setEventMessages($object->error, $object->errors, 'errors');
264 $error++;
265 }
266 }
267 if (!$error) {
268 setEventMessages($langs->trans("RecordsModified", $nbok), null, 'mesgs');
269 $db->commit();
270 } else {
271 $db->rollback();
272 }
273 }
274}
275
276// Purge search criteria
277if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All tests are required to be compatible with all browsers
278 $search_lastname = '';
279 $search_firstname = '';
280 $search_email = '';
281 $search_other = '';
282 $search_dest_status = '';
283 $toselect = array();
284}
285
286// Action update description of emailing
287if (($action == 'settitle' || $action == 'setemail_from' || $action == 'setreplyto' || $action == 'setemail_errorsto' || $action == 'setevenunsubscribe') && $permissiontocreate) {
288 $upload_dir = $conf->mailing->dir_output."/".get_exdir($object->id, 2, 0, 1, $object, 'mailing');
289
290 if ($action == 'settitle') { // Test on permission already done
291 $object->title = trim(GETPOST('title', 'alpha'));
292 } elseif ($action == 'setemail_from') { // Test on permission already done
293 $object->email_from = trim(GETPOST('email_from', 'alphawithlgt')); // Must allow 'name <email>'
294 } elseif ($action == 'setemail_replyto') { // Test on permission already done
295 $object->email_replyto = trim(GETPOST('email_replyto', 'alphawithlgt')); // Must allow 'name <email>'
296 } elseif ($action == 'setemail_errorsto') { // Test on permission already done
297 $object->email_errorsto = trim(GETPOST('email_errorsto', 'alphawithlgt')); // Must allow 'name <email>'
298 } elseif ($action == 'settitle' && empty($object->title)) { // Test on permission already done
299 $mesg = $langs->trans("ErrorFieldRequired", $langs->transnoentities("MailTitle"));
300 } elseif ($action == 'setfrom' && empty($object->email_from)) { // Test on permission already done
301 $mesg = $langs->trans("ErrorFieldRequired", $langs->transnoentities("MailFrom"));
302 } elseif ($action == 'setevenunsubscribe') { // Test on permission already done
303 $object->evenunsubscribe = (GETPOST('evenunsubscribe') ? 1 : 0);
304 }
305
306 if (!$mesg) {
307 $result = $object->update($user);
308 if ($result >= 0) {
309 header("Location: ".$_SERVER['PHP_SELF']."?id=".$object->id);
310 exit;
311 }
312 $mesg = $object->error;
313 }
314
315 setEventMessages($mesg, $mesgs, 'errors');
316 $action = "";
317}
318
319
320/*
321 * View
322 */
323
324$form = new Form($db);
325$formmailing = new FormMailing($db);
326
327$help_url = 'EN:Module_EMailing|FR:Module_Mailing|ES:M&oacute;dulo_Mailing';
328llxHeader('', $langs->trans("Mailing"), $help_url);
329
330$arrayofselected = is_array($toselect) ? $toselect : array();
331$totalarray = [
332 'nbfield' => 0,
333];
334
335if ($object->fetch($id) >= 0) {
336 $head = emailing_prepare_head($object);
337
338 print dol_get_fiche_head($head, 'targets', $langs->trans("Mailing"), -1, 'email');
339
340 $linkback = '<a href="'.DOL_URL_ROOT.'/comm/mailing/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
341
342 $morehtmlref = '<div class="refidno">';
343 // Ref customer
344 $morehtmlref .= $form->editfieldkey("", 'title', $object->title, $object, 0, 'string', '', 0, 1);
345 $morehtmlref .= $form->editfieldval("", 'title', $object->title, $object, 0, 'string', '', null, null, '', 1);
346 $morehtmlref .= '</div>';
347
348 $morehtmlstatus = '';
349 $nbtry = $nbok = 0;
350 if ($object->status == $object::STATUS_SENTPARTIALY || $object->status == $object::STATUS_SENTCOMPLETELY) {
351 $nbtry = $object->countNbOfTargets('alreadysent');
352 $nbko = $object->countNbOfTargets('alreadysentko');
353 $nbok = ($nbtry - $nbko);
354
355 $morehtmlstatus .= ' ('.$nbtry.'/'.$object->nbemail;
356 if ($nbko) {
357 $morehtmlstatus .= ' - '.$nbko.' '.$langs->trans("Error");
358 }
359 $morehtmlstatus .= ') &nbsp; ';
360 }
361
362 dol_banner_tab($object, 'id', $linkback, 1, 'rowid', 'ref', $morehtmlref, '', 0, '', $morehtmlstatus);
363
364 print '<div class="fichecenter">';
365 print '<div class="fichehalfleft">';
366 print '<div class="underbanner clearboth"></div>';
367
368 print '<table class="border centpercent tableforfield">'."\n";
369
370 // From
371 print '<tr><td class="titlefield">';
372 print $langs->trans("MailFrom").'</td><td>';
373 $emailarray = CMailFile::getArrayAddress($object->email_from);
374 foreach ($emailarray as $email => $name) {
375 if ($name && $name != $email) {
376 print dol_escape_htmltag($name).' &lt;'.$email;
377 print '&gt;';
378 if (!isValidEmail($email)) {
379 $langs->load("errors");
380 print img_warning($langs->trans("ErrorBadEMail", $email));
381 }
382 } else {
383 print dol_print_email($object->email_from, 0, 0, 0, 0, 1);
384 }
385 }
386
387 print '</td></tr>';
388
389 // Errors to
390 if ($object->messtype != 'sms') {
391 print '<tr><td>'.$langs->trans("MailErrorsTo").'</td><td>';
392 $emailarray = CMailFile::getArrayAddress($object->email_errorsto);
393 foreach ($emailarray as $email => $name) {
394 if ($name != $email) {
395 print dol_escape_htmltag((string) $name).' &lt;'.$email;
396 print '&gt;';
397 if ($email && !isValidEmail($email)) {
398 $langs->load("errors");
399 print img_warning($langs->trans("ErrorBadEMail", $email));
400 } elseif ($email && !isValidMailDomain($email)) {
401 $langs->load("errors");
402 print img_warning($langs->trans("ErrorBadMXDomain", $email));
403 }
404 } else {
405 print dol_print_email($object->email_errorsto, 0, 0, 0, 0, 1);
406 }
407 }
408 print '</td></tr>';
409 }
410
411 // Reply to
412 if ($object->messtype != 'sms') {
413 print '<tr><td>';
414 print $form->editfieldkey("MailReply", 'email_replyto', $object->email_replyto, $object, (int) ($user->hasRight('mailing', 'creer') && $object->status < $object::STATUS_SENTCOMPLETELY), 'string');
415 print '</td><td>';
416 print $form->editfieldval("MailReply", 'email_replyto', $object->email_replyto, $object, $user->hasRight('mailing', 'creer') && $object->status < $object::STATUS_SENTCOMPLETELY, 'string');
417 $email = CMailFile::getValidAddress($object->email_replyto, 2);
418 if ($action != 'editemail_replyto') {
419 if ($email && !isValidEmail($email)) {
420 $langs->load("errors");
421 print img_warning($langs->trans("ErrorBadEMail", $email));
422 } elseif ($email && !isValidMailDomain($email)) {
423 $langs->load("errors");
424 print img_warning($langs->trans("ErrorBadMXDomain", $email));
425 }
426 }
427 print '</td></tr>';
428 }
429
430 print '</table>';
431 print '</div>';
432
433
434 print '<div class="fichehalfright">';
435 print '<div class="underbanner clearboth"></div>';
436
437 print '<table class="border centpercent tableforfield">';
438
439 // Number of distinct emails
440 print '<tr><td>';
441 print $langs->trans("TotalNbOfDistinctRecipients");
442 print '</td><td>';
443 $nbemail = ($object->nbemail ? $object->nbemail : 0);
444 if (is_numeric($nbemail)) {
445 $htmltooltip = '';
446 if ((getDolGlobalString('MAILING_LIMIT_SENDBYWEB') && getDolGlobalInt('MAILING_LIMIT_SENDBYWEB') < $nbemail) && ($object->status == 1 || ($object->status == 2 && $nbtry < $nbemail))) {
447 if (getDolGlobalInt('MAILING_LIMIT_SENDBYWEB') > 0) {
448 $htmltooltip .= $langs->trans('LimitSendingEmailing', getDolGlobalString('MAILING_LIMIT_SENDBYWEB'));
449 } else {
450 $htmltooltip .= $langs->trans('SendingFromWebInterfaceIsNotAllowed');
451 }
452 }
453 if (empty($nbemail)) {
454 $nbemail .= ' '.img_warning($langs->trans('ToAddRecipientsChooseHere'));//.' <span class="warning">'.$langs->trans("NoTargetYet").'</span>';
455 }
456 if ($htmltooltip) {
457 print $form->textwithpicto($nbemail, $htmltooltip, 1, 'info');
458 } else {
459 print $nbemail;
460 }
461 }
462 print '</td></tr>';
463
464 print '<tr><td>';
465 print $langs->trans("MAIN_MAIL_SENDMODE");
466 print '</td><td>';
467 if ($object->messtype != 'sms') {
468 if (getDolGlobalString('MAIN_MAIL_SENDMODE_EMAILING') && getDolGlobalString('MAIN_MAIL_SENDMODE_EMAILING') != 'default') {
469 $text = $listofmethods[getDolGlobalString('MAIN_MAIL_SENDMODE_EMAILING')];
470 } elseif (getDolGlobalString('MAIN_MAIL_SENDMODE')) {
471 $text = $listofmethods[getDolGlobalString('MAIN_MAIL_SENDMODE')];
472 } else {
473 $text = $listofmethods['mail'];
474 }
475 print $text;
476 if (getDolGlobalString('MAIN_MAIL_SENDMODE_EMAILING') != 'default') {
477 if (getDolGlobalString('MAIN_MAIL_SENDMODE_EMAILING') != 'mail') {
478 print ' <span class="opacitymedium">('.getDolGlobalString('MAIN_MAIL_SMTP_SERVER_EMAILING', getDolGlobalString('MAIN_MAIL_SMTP_SERVER')).')</span>';
479 }
480 } elseif (getDolGlobalString('MAIN_MAIL_SENDMODE') != 'mail' && getDolGlobalString('MAIN_MAIL_SMTP_SERVER')) {
481 print ' <span class="opacitymedium">('.getDolGlobalString('MAIN_MAIL_SMTP_SERVER').')</span>';
482 }
483 } else {
484 print 'SMS ';
485 print ' <span class="opacitymedium">('.getDolGlobalString('MAIN_MAIL_SMTP_SERVER').')</span>';
486 }
487 print '</td></tr>';
488
489 // Other attributes. Fields from hook formObjectOptions and Extrafields.
490 include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_view.tpl.php';
491
492 print '</table>';
493 print '</div>';
494 print '</div>';
495
496 print '<div class="clearboth"></div>';
497
498 print dol_get_fiche_end();
499
500 print '<br>';
501
502
503 $newcardbutton = '';
504 $allowaddtarget = ($object->status == $object::STATUS_DRAFT);
505 if (GETPOST('allowaddtarget')) {
506 $allowaddtarget = 1;
507 }
508 if (!$allowaddtarget) {
509 $newcardbutton .= dolGetButtonTitle($langs->trans('New'), '', 'fa fa-plus-circle', $_SERVER["PHP_SELF"].'?id='.$object->id.'&allowaddtarget=1', '', $user->hasRight('mailing', 'creer'));
510 }
511
512 // Show email selectors
513 if ($allowaddtarget && $user->hasRight('mailing', 'creer')) {
514 print load_fiche_titre($langs->trans("ToAddRecipientsChooseHere").'...', ($user->admin ? info_admin($langs->trans("YouCanAddYourOwnPredefindedListHere"), 1) : ''), '');
515
516 print '<div class="div-table-responsive">';
517 print '<div class="tagtable centpercentwithout1imp liste_titre_bydiv borderbottom" id="tablelines">';
518
519 print '<div class="tagtr liste_titre">';
520 print '<div class="tagtd"></div>';
521 print '<div class="tagtd">'.$langs->trans("RecipientSelectionModules").'</div>';
522 print '<div class="tagtd center maxwidth150">';
523 if ($object->messtype != 'sms') {
524 print $langs->trans("NbOfUniqueEMails");
525 } else {
526 print $langs->trans("NbOfUniquePhones");
527 }
528 print '</div>';
529 print '<div class="tagtd left"><div class="inline-block">'.$langs->trans("Filters").'</div>';
530 if ($object->messtype != 'sms') {
531 print ' &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <div class="inline-block valignmiddle">'.$langs->trans("EvenUnsubscribe").' ';
532 print ajax_object_onoff($object, 'evenunsubscribe', 'evenunsubscribe', 'EvenUnsubscribe:switch_on:warning', 'EvenUnsubscribe', array(), 'small valignmiddle reposition', '', 1);
533 print '</div>';
534 }
535 print '</div>';
536 print '<div class="tagtd">&nbsp;</div>';
537 print '</div>'; // End tr
538
539 clearstatcache();
540
541 foreach ($modulesdir as $dir) {
542 $modulenames = array();
543
544 // Load modules attributes in arrays (name, numero, orders) from dir directory
545 //print $dir."\n<br>";
546 dol_syslog("Scan directory ".$dir." for modules");
547 $handle = @opendir($dir);
548 if (is_resource($handle)) {
549 while (($file = readdir($handle)) !== false) {
550 if (substr($file, 0, 1) != '.' && substr($file, 0, 3) != 'CVS') {
551 $reg = array();
552 if (preg_match("/(.*)\.modules\.php$/i", $file, $reg)) {
553 if ($reg[1] == 'example') {
554 continue;
555 }
556 $modulenames[] = $reg[1];
557 }
558 }
559 }
560 closedir($handle);
561 }
562
563 // Sort $modulenames
564 sort($modulenames);
565
566 $var = true;
567
568 // Loop on each submodule
569 foreach ($modulenames as $modulename) {
570 // Loading Class
571 $file = $dir.$modulename.".modules.php";
572 $classname = "mailing_".$modulename;
573 require_once $file;
574
575 $obj = new $classname($db);
576 '@phan-var-force MailingTargets $obj';
577
578 // Check if qualified
579 $qualified = (is_null($obj->enabled) ? 1 : (int) dol_eval((string) $obj->enabled, 1));
580
581 // Check dependencies
582 foreach ($obj->require_module as $key) {
583 if (empty($conf->$key->enabled) || (empty($user->admin) && $obj->require_admin)) {
584 $qualified = 0;
585 //print "Les prerequis d'activation du module mailing ne sont pas respectes. Il ne sera pas actif";
586 break;
587 }
588 }
589
590 // If module is qualified
591 if ($qualified) {
592 if ($allowaddtarget) {
593 print '<form class="oddeven trforbreakperms trforbreaknobg impair tagtr" name="'.$modulename.'" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'&module='.$modulename.'" method="POST" enctype="multipart/form-data">';
594 print '<input type="hidden" name="token" value="'.newToken().'">';
595 print '<input type="hidden" name="action" value="add">';
596 print '<input type="hidden" name="page_y" value="'.newToken().'">';
597 } else {
598 print '<div class="oddeven trforbreakperms trforbreaknobg impair tagtr">';
599 }
600
601 print '<div class="tagtd paddingleftlarge marginleftonly paddingrightlarge marginrightonly valignmiddle center">';
602 if (empty($obj->picto)) {
603 $obj->picto = 'generic';
604 }
605 print img_object($langs->trans("EmailingTargetSelector").': '.get_class($obj), $obj->picto, 'class="valignmiddle width25 size15x"');
606 print '</div>';
607 print '<div class="tagtd valignmiddle">'; // style="height: 4em"
608 print $obj->getDesc();
609 print '</div>';
610
611 $nbofrecipient = -1;
612
613 try {
614 $obj->evenunsubscribe = $object->evenunsubscribe; // Set flag to include/exclude email that has opt-out.
615
616 $nbofrecipient = $obj->getNbOfRecipients('');
617 } catch (Exception $e) {
618 dol_syslog($e->getMessage(), LOG_ERR);
619 }
620
621 print '<div class="tagtd center valignmiddle">';
622 if ($nbofrecipient === '' || $nbofrecipient >= 0) {
623 print $nbofrecipient;
624 } else {
625 print $langs->trans("Error").' '.img_error($obj->error);
626 }
627 print '</div>';
628
629 print '<div class="tagtd left valignmiddle">';
630 if ($allowaddtarget) {
631 try {
632 $filter = $obj->formFilter();
633 } catch (Exception $e) {
634 dol_syslog($e->getMessage(), LOG_ERR);
635 }
636 if ($filter) {
637 print $filter;
638 } else {
639 print $langs->trans("None");
640 }
641 }
642 print '</div>';
643
644 print '<div class="tagtd right valignmiddle">';
645 if ($allowaddtarget) {
646 print '<input type="submit" class="button button-add small reposition" name="button_'.$modulename.'" value="'.$langs->trans("Add").'">';
647 } else {
648 print '<input type="submit" class="button small disabled" disabled="disabled" name="button_'.$modulename.'" value="'.$langs->trans("Add").'">';
649 //print $langs->trans("MailNoChangePossible");
650 print "&nbsp;";
651 }
652 print '</div>';
653
654 if ($allowaddtarget) {
655 print '</form>';
656 } else {
657 print '</div>';
658 }
659 }
660 }
661 } // End foreach dir
662
663 $parameters = array();
664 $reshook = $hookmanager->executeHooks('formObjectOptions', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
665 print $hookmanager->resPrint;
666
667 print '</div>'; // End table
668 print '</div>';
669
670 print '<br>';
671
672 if ($sqlmessage && $user->admin) {
673 print info_admin($langs->trans("SQLUsedForExport").':<br> '.$sqlmessage, 0, 0, '1', '', 'TechnicalInformation');
674 print '<br>';
675 }
676
677 print '<br><br>';
678 }
679
680
681
682 // List of selected targets
683 $sql = "SELECT mc.rowid, mc.lastname, mc.firstname, mc.email, mc.other, mc.statut as status, mc.date_envoi, mc.tms,";
684 $sql .= " mc.source_url, mc.source_id, mc.source_type, mc.error_text,";
685 $sql .= " COUNT(mu.rowid) as nb";
686 $sql .= " FROM ".MAIN_DB_PREFIX."mailing_cibles as mc";
687 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."mailing_unsubscribe as mu ON mu.email = mc.email";
688 $sql .= " WHERE mc.fk_mailing=".((int) $object->id);
689 $asearchcriteriahasbeenset = 0;
690 if ($search_lastname) {
691 $sql .= natural_search("mc.lastname", $search_lastname);
692 $asearchcriteriahasbeenset++;
693 }
694 if ($search_firstname) {
695 $sql .= natural_search("mc.firstname", $search_firstname);
696 $asearchcriteriahasbeenset++;
697 }
698 if ($search_email) {
699 $sql .= natural_search("mc.email", $search_email);
700 $asearchcriteriahasbeenset++;
701 }
702 if ($search_other) {
703 $sql .= natural_search("mc.other", $search_other);
704 $asearchcriteriahasbeenset++;
705 }
706 if ($search_dest_status != '' && (int) $search_dest_status >= -1) {
707 $sql .= " AND mc.statut = ".((int) $search_dest_status);
708 $asearchcriteriahasbeenset++;
709 }
710 $sql .= ' GROUP BY mc.rowid, mc.lastname, mc.firstname, mc.email, mc.other, mc.statut, mc.date_envoi, mc.tms, mc.source_url, mc.source_id, mc.source_type, mc.error_text';
711 $sql .= $db->order($sortfield, $sortorder);
712
713
714 // Count total nb of records
715 $nbtotalofrecords = '';
716 if (!getDolGlobalInt('MAIN_DISABLE_FULL_SCANLIST')) {
717 $result = $db->query($sql);
718 $nbtotalofrecords = $db->num_rows($result);
719 if (($page * $limit) > $nbtotalofrecords) { // if total resultset is smaller then paging size (filtering), goto and load page 0
720 $page = 0;
721 $offset = 0;
722 }
723
724 // Fix/update nbemail on emailing record if it differs (may happen if user edit lines from database directly)
725 if (empty($asearchcriteriahasbeenset)) {
726 if ($nbtotalofrecords != $object->nbemail) {
727 dol_syslog("We found a difference in nb of record in target table and the property ->nbemail, we fix ->nbemail");
728 //print "nbemail=".$object->nbemail." nbtotalofrecords=".$nbtotalofrecords;
729 $resultrefresh = $object->refreshNbOfTargets();
730 if ($resultrefresh < 0) {
731 dol_print_error($db, $object->error, $object->errors);
732 }
733 }
734 }
735 }
736
737 //$nbtotalofrecords=$object->nbemail; // nbemail is a denormalized field storing nb of targets
738 $sql .= $db->plimit($limit + 1, $offset);
739
740 $resql = $db->query($sql);
741 if ($resql) {
742 $num = $db->num_rows($resql);
743
744 $param = "&id=".$object->id;
745 //if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) $param.='&contextpage='.urlencode($contextpage);
746 if ($limit > 0 && $limit != $conf->liste_limit) {
747 $param .= '&limit='.((int) $limit);
748 }
749 if ($search_lastname) {
750 $param .= "&search_lastname=".urlencode($search_lastname);
751 }
752 if ($search_firstname) {
753 $param .= "&search_firstname=".urlencode($search_firstname);
754 }
755 if ($search_email) {
756 $param .= "&search_email=".urlencode($search_email);
757 }
758 if ($search_other) {
759 $param .= "&search_other=".urlencode($search_other);
760 }
761
762 print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">';
763 print '<input type="hidden" name="token" value="'.newToken().'">';
764 print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
765 print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
766 print '<input type="hidden" name="page" value="'.$page.'">';
767 print '<input type="hidden" name="id" value="'.$object->id.'">';
768 print '<input type="hidden" name="page_y" value="">';
769
770 $morehtmlcenter = '';
771 $arrayofmassactions = array();
772 if ($permissiontocreate) {
773 $arrayofmassactions['reset_target'] = img_picto('', 'refresh', 'class="pictofixedwidth"').$langs->trans("ResetMailingTargetMassaction");
774 }
775 $massactionbutton = $form->selectMassAction('', $arrayofmassactions);
776 $morehtmlcenter .= $massactionbutton .'<br>';
777
778 if ($object->status == $object::STATUS_DRAFT) {
779 $morehtmlcenter = '<span class="opacitymedium hideonsmartphone">'.$langs->trans("ToClearAllRecipientsClickHere").'</span> <a href="'.$_SERVER["PHP_SELF"].'?clearlist=1&id='.$object->id.'" class="button reposition smallpaddingimp">'.$langs->trans("TargetsReset").'</a>';
780 }
781 $morehtmlcenter .= ' &nbsp; <a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=exportcsv&token='.newToken().'&exportcsv=1&id='.$object->id.'">'.img_picto('', 'download', 'class="pictofixedwidth"').$langs->trans("Download").'</a>';
782
783 print '</form>';
784
785 print "\n<!-- List of selected targets -->\n";
786 print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">';
787 print '<input type="hidden" name="token" value="'.newToken().'">';
788 print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
789 print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
790 print '<input type="hidden" name="page" value="'.$page.'">';
791 print '<input type="hidden" name="id" value="'.$object->id.'">';
792 print '<input type="hidden" name="limit" value="'.$limit.'">';
793 print '<input type="hidden" name="page_y" value="">';
794
795 // @phan-suppress-next-line PhanPluginSuspiciousParamOrder
796 print_barre_liste($langs->trans("MailSelectedRecipients"), $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $morehtmlcenter, $num, $nbtotalofrecords, 'generic', 0, $newcardbutton, '', $limit, 0, 0, 1);
797
798 if ($massaction == 'reset_target') {
799 // Confirm reset
800 print $form->formconfirm($_SERVER["PHP_SELF"]."?id=".$object->id, $langs->trans("ConfirmResetMailingTargetMassaction"), $langs->trans("ConfirmResetMailingTargetMassactionQuestion"), "confirm_reset_target", null, '', 0, 0, 500, 1);
801 }
802
803 $varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
804 $htmlofselectarray = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage, $conf->main_checkbox_left_column ? 'left' : ''); // This also change content of $arrayfields with user setup
805 $selectedfields = ($mode != 'kanban' ? $htmlofselectarray : '');
806 $selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons('checkforselect', 1) : '');
807
808 print '<div class="div-table-responsive">';
809 print '<table class="noborder centpercent">';
810
811 // Line of filters
812 print '<tr class="liste_titre_filter">';
813
814 // Action column
815 if ($conf->main_checkbox_left_column) {
816 print '<td class="liste_titre maxwidthsearch">';
817 $searchpicto = $form->showFilterButtons('left');
818 print $searchpicto;
819 print '</td>';
820 }
821 // EMail
822 print '<td class="liste_titre">';
823 print '<input class="flat maxwidth75" type="text" name="search_email" value="'.dol_escape_htmltag($search_email).'">';
824 print '</td>';
825 // Name
826 print '<td class="liste_titre">';
827 print '<input class="flat maxwidth50" type="text" name="search_lastname" value="'.dol_escape_htmltag($search_lastname).'">';
828 print '</td>';
829 // Firstname
830 print '<td class="liste_titre">';
831 print '<input class="flat maxwidth50" type="text" name="search_firstname" value="'.dol_escape_htmltag($search_firstname).'">';
832 print '</td>';
833 // Other
834 print '<td class="liste_titre">';
835 print '<input class="flat maxwidth100" type="text" name="search_other" value="'.dol_escape_htmltag($search_other).'">';
836 print '</td>';
837 // Source
838 print '<td class="liste_titre">';
839 print '&nbsp;';
840 print '</td>';
841
842 // Date last update
843 print '<td class="liste_titre">';
844 print '&nbsp;';
845 print '</td>';
846
847 // Date sending
848 print '<td class="liste_titre">';
849 print '&nbsp;';
850 print '</td>';
851
852 // Status
853 print '<td class="liste_titre center parentonrightofpage">';
854 print $formmailing->selectDestinariesStatus($search_dest_status, 'search_dest_status', 1, 'width100 onrightofpage');
855 print '</td>';
856
857 // Action column
858 if (!$conf->main_checkbox_left_column) {
859 print '<td class="liste_titre maxwidthsearch">';
860 $searchpicto = $form->showFilterButtons();
861 print $searchpicto;
862 print '</td>';
863 }
864
865 print '</tr>';
866
867 if ($page) {
868 $param .= "&page=".urlencode((string) ($page));
869 }
870
871 print '<tr class="liste_titre">';
872 // Action column
873 if ($conf->main_checkbox_left_column) {
874 print getTitleFieldOfList($selectedfields, 0, $_SERVER["PHP_SELF"], '', '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ')."\n";
875 $totalarray['nbfield']++;
876 }
877 print_liste_field_titre("EMail", $_SERVER["PHP_SELF"], "mc.email", '', $param, "", $sortfield, $sortorder);
878 print_liste_field_titre("Lastname", $_SERVER["PHP_SELF"], "mc.lastname", '', $param, "", $sortfield, $sortorder);
879 print_liste_field_titre("Firstname", $_SERVER["PHP_SELF"], "mc.firstname", '', $param, "", $sortfield, $sortorder);
880 print_liste_field_titre("OtherInformations", $_SERVER["PHP_SELF"], '', "", $param, "", $sortfield, $sortorder);
881 print_liste_field_titre("Source", $_SERVER["PHP_SELF"], '', "", $param, '', $sortfield, $sortorder, 'center ');
882 // Date last update
883 print_liste_field_titre("DateLastModification", $_SERVER["PHP_SELF"], "mc.tms", '', $param, '', $sortfield, $sortorder, 'center ');
884 // Date sending
885 print_liste_field_titre("DateSending", $_SERVER["PHP_SELF"], "mc.date_envoi", '', $param, '', $sortfield, $sortorder, 'center ');
886 print_liste_field_titre("Status", $_SERVER["PHP_SELF"], "mc.statut", '', $param, '', $sortfield, $sortorder, 'center ');
887 // Action column
888 if (!$conf->main_checkbox_left_column) {
889 print getTitleFieldOfList($selectedfields, 0, $_SERVER["PHP_SELF"], '', '', '', '', $sortfield, $sortorder, 'center maxwidthsearch ')."\n";
890 $totalarray['nbfield']++;
891 }
892 print '</tr>';
893
894 $i = 0;
895
896 if ($num) {
897 include_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent.class.php';
898 include_once DOL_DOCUMENT_ROOT.'/user/class/user.class.php';
899 include_once DOL_DOCUMENT_ROOT.'/societe/class/societe.class.php';
900 include_once DOL_DOCUMENT_ROOT.'/contact/class/contact.class.php';
901 include_once DOL_DOCUMENT_ROOT.'/eventorganization/class/conferenceorboothattendee.class.php';
902
903 $objectstaticmember = new Adherent($db);
904 $objectstaticuser = new User($db);
905 $objectstaticcompany = new Societe($db);
906 $objectstaticcontact = new Contact($db);
907 $objectstaticeventorganization = new ConferenceOrBoothAttendee($db);
908
909 while ($i < min($num, $limit)) {
910 $obj = $db->fetch_object($resql);
911
912 print '<tr class="oddeven">';
913
914 // Action column
915 if ($conf->main_checkbox_left_column) {
916 print '<td class="center nowraponall">';
917 print '<!-- ID mailing_cibles = '.$obj->rowid.' -->';
918 if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
919 $selected = 0;
920 if (in_array($obj->rowid, $arrayofselected)) {
921 $selected = 1;
922 }
923 print '<input id="cb'.$obj->rowid.'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$obj->rowid.'"'.($selected ? ' checked="checked"' : '').'>';
924 }
925 if ($obj->status == $object::STATUS_DRAFT) { // Not sent yet
926 if ($user->hasRight('mailing', 'creer')) {
927 print '<a class="reposition marginleftonly" href="'.$_SERVER['PHP_SELF'].'?action=delete&token='.newToken().'&rowid='.((int) $obj->rowid).$param.'">'.img_delete($langs->trans("RemoveRecipient")).'</a>';
928 }
929 }
930 /*if ($obj->status == -1) // Sent with error
931 {
932 print '<a href="'.$_SERVER['PHP_SELF'].'?action=retry&rowid='.$obj->rowid.$param.'">'.$langs->trans("Retry").'</a>';
933 }*/
934 print '</td>';
935 }
936
937 print '<td class="tdoverflowmax150">';
938 print img_picto($obj->email, 'email', 'class="paddingright"');
939 if ($obj->nb > 0) {
940 print img_warning($langs->trans("EmailOptedOut"), 'warning', 'pictofixedwidth');
941 }
942 print dolPrintHTML($obj->email);
943 print '</td>';
944
945 print '<td class="tdoverflowmax150" title="'.dolPrintHTMLForAttribute($obj->lastname).'">'.dolPrintHTML($obj->lastname).'</td>';
946
947 print '<td class="tdoverflowmax150" title="'.dolPrintHTMLForAttribute($obj->firstname).'">'.dolPrintHTML($obj->firstname).'</td>';
948
949 print '<td class="tdoverflowmax300" title="'.dolPrintHTMLForAttribute($obj->other).'"><span class="small">'.dolPrintHTML($obj->other).'</small></td>';
950
951 print '<td class="center tdoverflowmax150">';
952 if (empty($obj->source_id) || empty($obj->source_type)) {
953 print empty($obj->source_url) ? '' : $obj->source_url; // For backward compatibility
954 } else {
955 if ($obj->source_type == 'member') {
956 $objectstaticmember->fetch($obj->source_id);
957 print $objectstaticmember->getNomUrl(1);
958 } elseif ($obj->source_type == 'user') {
959 $objectstaticuser->fetch($obj->source_id);
960 print $objectstaticuser->getNomUrl(1);
961 } elseif ($obj->source_type == 'thirdparty') {
962 $objectstaticcompany->fetch($obj->source_id);
963 print $objectstaticcompany->getNomUrl(1);
964 } elseif ($obj->source_type == 'contact') {
965 $objectstaticcontact->fetch($obj->source_id);
966 print $objectstaticcontact->getNomUrl(1);
967 } elseif ($obj->source_type == 'eventorganizationattendee') {
968 $objectstaticeventorganization->fetch($obj->source_id);
969 print $objectstaticeventorganization->getNomUrl(1);
970 } else {
971 print $obj->source_url;
972 }
973 }
974 print '</td>';
975
976 // Date last update
977 print '<td class="center nowraponall">';
978 print dol_print_date($db->jdate($obj->tms), 'dayhour', 'tzuserrel');
979 print '</td>';
980
981 // Date sent
982 print '<td class="center nowraponall">';
983 if ($obj->status != $object::STATUS_DRAFT) { // If status of target line is not draft
984 // Date sent
985 print dol_print_date($db->jdate($obj->date_envoi), 'dayhour', 'tzuserrel'); // @TODO Must store date in date format
986 }
987 print '</td>';
988
989 // Status of recipient sending email (Warning != status of emailing)
990 print '<td class="nowrap center">';
991 if ($obj->status == $object::STATUS_DRAFT) { // If status of target line is not draft
992 print $object::libStatutDest((int) $obj->status, 2, '');
993 } else {
994 print $object::libStatutDest((int) $obj->status, 2, $obj->error_text);
995 }
996 print '</td>';
997
998 // Action column
999 if (!$conf->main_checkbox_left_column) {
1000 print '<td class="center nowraponall">';
1001 print '<!-- ID mailing_cibles = '.$obj->rowid.' -->';
1002 if ($obj->status == $object::STATUS_DRAFT) { // If status of target line is not sent yet
1003 if ($user->hasRight('mailing', 'creer')) {
1004 print '<a class="reposition marginleftonly" href="'.$_SERVER['PHP_SELF'].'?action=delete&token='.newToken().'&rowid='.((int) $obj->rowid).$param.'">'.img_delete($langs->trans("RemoveRecipient")).'</a>';
1005 }
1006 }
1007 /*if ($obj->status == -1) // Sent with error
1008 {
1009 print '<a href="'.$_SERVER['PHP_SELF'].'?action=retry&rowid='.$obj->rowid.$param.'">'.$langs->trans("Retry").'</a>';
1010 }*/
1011 print '</td>';
1012 }
1013 print '</tr>';
1014
1015 $i++;
1016 }
1017 } else {
1018 if ($object->status < $object::STATUS_SENTPARTIALY) {
1019 print '<tr><td colspan="9">';
1020 print '<span class="opacitymedium">'.$langs->trans("NoTargetYet").'</span>';
1021 print '</td></tr>';
1022 } else {
1023 print '<tr><td colspan="9">';
1024 print '<span class="opacitymedium">'.$langs->trans("NoRecordFound").'</span>';
1025 print '</td></tr>';
1026 }
1027 }
1028 print "</table><br>";
1029 print '</div>';
1030
1031 print '</form>';
1032
1033 $db->free($resql);
1034 } else {
1035 dol_print_error($db);
1036 }
1037
1038 print "\n<!-- End list of selected targets -->\n";
1039}
1040
1041// End of page
1042llxFooter();
1043$db->close();
$id
Support class for third parties, contacts, members, users or resources.
Definition account.php:48
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:67
$totalarray
Definition export.php:1206
ajax_object_onoff($object, $code, $field, $text_on, $text_off, $input=array(), $morecss='', $htmlname='', $forcenojs=0, $moreparam='')
On/off button to change a property status of an object This uses the ajax service objectonoff....
Definition ajax.lib.php:766
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 members of a foundation.
static getValidAddress($address, $format, $encode=0, $maxnumberofemail=0)
Return a formatted address string for SMTP protocol.
static getArrayAddress($address)
Return a formatted array of address string for SMTP protocol.
Class for ConferenceOrBoothAttendee.
Class to manage contact/addresses.
Class to manage generation of HTML components Only common components must be here.
Class to offer components to list and upload files.
Class to manage emailings module.
Parent class of emailing target selectors modules.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage Dolibarr users.
emailing_prepare_head(Mailing $object)
Prepare array with list of tabs.
dolGetModulesDirs($subdir='')
Return list of directories that contain modules.
isValidMailDomain($mail)
Return true if email has a domain name that can be resolved to MX type.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
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.
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_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
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.
dolPrintHTML($s, $allowiframe=0)
Return a string (that can be on several lines) ready to be output on a HTML page.
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.
dol_eval($s, $returnvalue=1, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
natural_search($fields, $value, $mode=0, $nofirstand=0)
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
newToken()
Return the value of token currently saved into session with name 'newtoken'.
dol_print_email($email, $cid=0, $socid=0, $addlink=0, $max=64, $showinvalid=1, $withpicto=0, $morecss='paddingrightonly')
Show EMail link formatted for HTML output.
getTitleFieldOfList($name, $thead=0, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $disablesortlink=0, $tooltip='', $forcenowrapcolumntitle=0)
Get title line of an array.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
img_error($titlealt='default')
Show error logo.
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.
info_admin($text, $infoonimgalt=0, $nodiv=0, $admin='1', $morecss='hideonsmartphone', $textfordropdown='', $picto='')
Show information in HTML for admin users or standard users.
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart='')
Return a path to have a the directory according to object where files are stored.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
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...
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.