dolibarr 20.0.2
massactions_pre.tpl.php
1<?php
2/* Copyright (C) 2013 Cédric Salvador <csalvador@gpcsolutions.fr>
3 * Copyright (C) 2013-2014 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
5 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.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 * or see https://www.gnu.org/
20 */
21
22// Following var must be set:
23// $action
24// $arrayofselected = array of id selected
25// $objecttmp = new MyObject($db);
26// $topicmail="SendSupplierProposalRef";
27// $modelmail="supplier_proposal_send";
28// $trackid='ord'.$objecttmp->id;
29//
30// Following var can be set
31// $object = Object fetched;
32// $sendto
33// $withmaindocfilemail
34'@phan-var-force CommonObject $objecttmp';
35
36if (!empty($sall) || !empty($search_all)) {
37 $search_all = empty($sall) ? $search_all : $sall;
38
39 print '<input type="hidden" name="search_all" value="'.$search_all.'">';
40}
41
42if ($massaction == 'predeletedraft') {
43 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassDraftDeletion"), $langs->trans("ConfirmMassDeletionQuestion", count($toselect)), "delete", null, '', 0, 200, 500, 1);
44}
45
46if ($massaction == 'predelete') {
47 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassDeletion"), $langs->trans("ConfirmMassDeletionQuestion", count($toselect)), "delete", null, '', 0, 200, 500, 1);
48}
49
50if ($massaction == 'preclonetasks') {
51 $selected = '';
52 foreach (GETPOST('toselect') as $tmpselected) {
53 $selected .= '&selected[]=' . $tmpselected;
54 }
55
56 $formquestion = array(
57 // TODO If list of project is long and project is not on a thirdparty, the combo may be very long.
58 // Solution: Allow only sameproject for cloning tasks ?
59 array('type' => 'other', 'name' => 'projectid', 'label' => $langs->trans('Project') .': ', 'value' => $form->selectProjects($object->id, 'projectid', '', 0, 1, '', 0, array(), $object->socid, '1', 1, '', null, 1)),
60 );
61 print $form->formconfirm($_SERVER['PHP_SELF'] . '?id=' . $object->id . $selected, $langs->trans('ConfirmMassClone'), '', 'clonetasks', $formquestion, '', 1, 300, 590);
62}
63
64if ($massaction == 'preaffecttag' && isModEnabled('category')) {
65 require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
66 $categ = new Categorie($db);
67 $categ_types = array();
68 $categ_type_array = $categ->getMapList();
69 foreach ($categ_type_array as $categdef) {
70 // Test on $object (should be useless, we already check on $objecttmp just after)
71 if (isset($object) && $categdef['obj_table'] == $object->table_element) {
72 if (!array_key_exists($categdef['code'], $categ_types)) {
73 $categ_types[$categdef['code']] = array('code' => $categdef['code'], 'label' => $langs->trans($categdef['obj_class']));
74 }
75 }
76 if (isset($objecttmp) && $categdef['obj_table'] == $objecttmp->table_element) {
77 if (!array_key_exists($categdef['code'], $categ_types)) {
78 $categ_types[$categdef['code']] = array('code' => $categdef['code'], 'label' => $langs->trans($categdef['obj_class']));
79 }
80 }
81 }
82
83 $formquestion = array();
84 if (!empty($categ_types)) {
85 foreach ($categ_types as $categ_type) {
86 $categ_arbo_tmp = $form->select_all_categories($categ_type['code'], '', 'parent', 0, 0, 3);
87 $formquestion[] = array(
88 'type' => 'other',
89 'name' => 'affecttag_'.$categ_type['code'],
90 'label' => '',
91 'value' => $form->multiselectarray('contcats_'.$categ_type['code'], $categ_arbo_tmp, GETPOST('contcats_'.$categ_type['code'], 'array'), null, null, '', 0, '60%', '', '', $langs->transnoentitiesnoconv("SelectTheTagsToAssign"))
92 );
93 }
94 $formquestion[] = array(
95 'type' => 'other',
96 'name' => 'affecttag_type',
97 'label' => '',
98 'value' => '<input type="hidden" name="affecttag_type" id="affecttag_type" value="'.implode(",", array_keys($categ_types)).'"/>'
99 );
100 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmAffectTag"), $langs->trans("ConfirmAffectTagQuestion", count($toselect)), "affecttag", $formquestion, 1, 0, 200, 500, 1);
101 } else {
102 setEventMessage('CategTypeNotFound');
103 }
104}
105
106if ($massaction == 'preupdateprice') {
107 $formquestion = array();
108
109 $valuefield = '<div style="display: flex; align-items: center; justify-content: flex-end; padding-right: 150px">';
110 $valuefield .= '<input type="number" name="pricerate" id="pricerate" min="-100" value="0" style="width: 100px; text-align: right; margin-right: 10px" />%';
111 $valuefield .= '</div>';
112
113 $formquestion[] = array(
114 'type' => 'other',
115 'name' => 'pricerate',
116 'label' => $langs->trans("Rate"),
117 'value' => $valuefield
118 );
119
120 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmUpdatePrice"), $langs->trans("ConfirmUpdatePriceQuestion", count($toselect)), "updateprice", $formquestion, 1, 0, 200, 500, 1);
121}
122
123if ($massaction == 'presetsupervisor') {
124 $formquestion = array();
125
126 $valuefield = '<div style="display: flex; align-items: center; justify-content: flex-end; padding-right: 150px">';
127 $valuefield .= img_picto('', 'user').' ';
128 $valuefield .= $form->select_dolusers('', 'supervisortoset', 1, $arrayofselected, 0, '', 0, $object->entity, 0, 0, '', 0, '', 'widthcentpercentminusx maxwidth300');
129 $valuefield .= '</div>';
130
131 $formquestion[] = array(
132 'type' => 'other',
133 'name' => 'supervisortoset',
134 'label' => $langs->trans("Supervisor"),
135 'value' => $valuefield
136 );
137
138 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmSetSupervisor"), $langs->trans("ConfirmSetSupervisorQuestion", count($toselect)), "setsupervisor", $formquestion, 1, 0, 200, 500, 1);
139}
140
141if ($massaction == 'preaffectuser') {
142 $formquestion = array();
143
144 $valuefielduser = '<div style="display: flex; align-items: center; justify-content: flex-end; padding-right: 165px; padding-bottom: 6px; gap: 5px">';
145 $valuefielduser .= img_picto('', 'user').' ';
146 $valuefielduser .= $form->select_dolusers('', 'usertoaffect', 1, $arrayofselected, 0, '', 0, $object->entity, 0, 0, '', 0, '', 'widthcentpercentminusx maxwidth300');
147 $valuefielduser .= '</div>';
148
149 $valuefieldprojrole = '<div style="display: flex; align-items: center; justify-content: flex-end; padding-right: 150px; padding-bottom: 6px">';
150 $valuefieldprojrole .= $formcompany->selectTypeContact($object, '', 'projectrole', 'internal', 'position', 0, 'widthcentpercentminusx maxwidth300', 0);
151 $valuefieldprojrole .= '</div>';
152
153 $valuefieldtasksrole = '<div style="display: flex; align-items: center; justify-content: flex-end; padding-right: 150px">';
154 $valuefieldtasksrole .= $formcompany->selectTypeContact($taskstatic, '', 'tasksrole', 'internal', 'position', 0, 'widthcentpercentminusx maxwidth300', 0);
155 $valuefieldtasksrole .= '</div>';
156
157 $formquestion[] = array(
158 'type' => 'other',
159 'name' => 'usertoaffect',
160 'label' => $langs->trans("User"),
161 'value' => $valuefielduser
162 );
163 $formquestion[] = array(
164 'type' => 'other',
165 'name' => 'projectrole',
166 'label' => $langs->trans("ProjectRole"),
167 'value' => $valuefieldprojrole
168 );
169
170 $formquestion[] = array(
171 'type' => 'other',
172 'name' => 'tasksrole',
173 'label' => $langs->trans("TasksRole"),
174 'value' => $valuefieldtasksrole
175 );
176
177 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmAffectUser"), $langs->trans("ConfirmAffectUserQuestion", count($toselect)), "affectuser", $formquestion, 1, 0, 200, 500, 1);
178}
179
180if ($massaction == 'presend') {
181 $langs->load("mails");
182
183 $listofselectedid = array();
184 $listofselectedrecipientobjid = array();
185 $listofselectedref = array();
186
187 if (!GETPOST('cancel', 'alpha')) {
188 foreach ($arrayofselected as $toselectid) {
189 $result = $objecttmp->fetch($toselectid);
190 if ($result > 0) {
191 $listofselectedid[$toselectid] = $toselectid;
192 $thirdpartyid = ($objecttmp->fk_soc ? $objecttmp->fk_soc : $objecttmp->socid); // For proposal, order, invoice, conferenceorbooth, ...
193 if (in_array($objecttmp->element, array('societe', 'conferenceorboothattendee'))) {
194 $thirdpartyid = $objecttmp->id;
195 } elseif ($objecttmp->element == 'contact') {
196 $thirdpartyid = $objecttmp->id;
197 } elseif ($objecttmp->element == 'expensereport') {
198 $thirdpartyid = $objecttmp->fk_user_author;
199 }
200 if (empty($thirdpartyid)) {
201 $thirdpartyid = 0;
202 }
203 if ($thirdpartyid) {
204 $listofselectedrecipientobjid[$thirdpartyid] = $thirdpartyid;
205 }
206 $listofselectedref[$thirdpartyid][$toselectid] = $objecttmp->ref;
207 }
208 }
209 }
210
211 print '<input type="hidden" name="massaction" value="confirm_presend">';
212
213 print dol_get_fiche_head(null, '', '');
214
215 // Create mail form
216 include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
217 $formmail = new FormMail($db);
218 $formmail->withform = -1;
219 $formmail->fromtype = (GETPOST('fromtype') ? GETPOST('fromtype') : (getDolGlobalString('MAIN_MAIL_DEFAULT_FROMTYPE') ? $conf->global->MAIN_MAIL_DEFAULT_FROMTYPE : 'user'));
220
221 if ($formmail->fromtype === 'user') {
222 $formmail->fromid = $user->id;
223 }
224 $formmail->trackid = $trackid;
225 $formmail->withfrom = 1;
226 $liste = $langs->trans("AllRecipientSelected", count($arrayofselected));
227 if (count($listofselectedrecipientobjid) == 1) { // Only 1 different recipient selected, we can suggest contacts
228 $liste = array();
229 $thirdpartyid = array_shift($listofselectedrecipientobjid);
230 if ($objecttmp->element == 'expensereport') {
231 $fuser = new User($db);
232 $fuser->fetch($thirdpartyid);
233 $liste['thirdparty'] = $fuser->getFullName($langs)." &lt;".$fuser->email."&gt;";
234 } elseif ($objecttmp->element == 'contact') {
235 $fcontact = new Contact($db);
236 $fcontact->fetch($thirdpartyid);
237 $liste['contact'] = $fcontact->getFullName($langs)." &lt;".$fcontact->email."&gt;";
238 } elseif ($objecttmp->element == 'partnership' && getDolGlobalString('PARTNERSHIP_IS_MANAGED_FOR') == 'member') {
239 $fadherent = new Adherent($db);
240 $fadherent->fetch($objecttmp->fk_member);
241 $liste['member'] = $fadherent->getFullName($langs)." &lt;".$fadherent->email."&gt;";
242 } else {
243 $soc = new Societe($db);
244 $soc->fetch($thirdpartyid);
245 foreach ($soc->thirdparty_and_contact_email_array(1) as $key => $value) {
246 $liste[$key] = $value;
247 }
248 }
249 $formmail->withtoreadonly = 0;
250 } else {
251 $formmail->withtoreadonly = 1;
252 }
253
254
255 $formmail->withoptiononeemailperrecipient = ((count($listofselectedref) == 1 && count(reset($listofselectedref)) == 1) || empty($liste)) ? 0 : (GETPOSTINT('oneemailperrecipient') ? 1 : -1);
256 if (in_array($objecttmp->element, array('conferenceorboothattendee'))) {
257 $formmail->withoptiononeemailperrecipient = 0;
258 }
259
260 $formmail->withto = empty($liste) ? (GETPOST('sendto', 'alpha') ? GETPOST('sendto', 'alpha') : array()) : $liste;
261 $formmail->withtofree = empty($liste) ? 1 : 0;
262 $formmail->withtocc = 1;
263 $formmail->withtoccc = getDolGlobalString('MAIN_EMAIL_USECCC');
264 if (!empty($topicmail)) {
265 $formmail->withtopic = $langs->transnoentities($topicmail, '__REF__', '__REF_CLIENT__');
266 } else {
267 $formmail->withtopic = 1;
268 }
269 if ($objecttmp->element == 'contact') {
270 $formmail->withfile = 0;
271 $formmail->withmaindocfile = 0; // Add a checkbox "Attach also main document"
272 } else {
273 $formmail->withfile = 1; // $formmail->withfile = 2 to allow to upload files is not yet supported in mass action
274 // Add a checkbox "Attach also main document"
275 if (isset($withmaindocfilemail)) {
276 $formmail->withmaindocfile = $withmaindocfilemail;
277 } else { // Do an automatic definition of $formmail->withmaindocfile
278 $formmail->withmaindocfile = 1;
279 if ($objecttmp->element != 'societe') {
280 $formmail->withfile = '<span class="hideonsmartphone opacitymedium">' . $langs->trans("OnlyPDFattachmentSupported") . '</span>';
281 $formmail->withmaindocfile = -1; // Add a checkbox "Attach also main document" but not checked by default
282 }
283 }
284 }
285
286 $formmail->withbody = 1;
287 $formmail->withdeliveryreceipt = 1;
288 $formmail->withcancel = 1;
289
290 // Make substitution in email content
291 $substitutionarray = getCommonSubstitutionArray($langs, 0, null, $object);
292
293 $substitutionarray['__EMAIL__'] = $sendto;
294 $substitutionarray['__CHECK_READ__'] = '<img src="'.DOL_MAIN_URL_ROOT.'/public/emailing/mailing-read.php?tag=undefined&securitykey='.dol_hash(getDolGlobalString('MAILING_EMAIL_UNSUBSCRIBE_KEY')."-undefined", 'md5').'" width="1" height="1" style="width:1px;height:1px" border="0"/>';
295 $substitutionarray['__ONLINE_PAYMENT_URL__'] = 'UrlToPayOnlineIfApplicable';
296 $substitutionarray['__ONLINE_PAYMENT_TEXT_AND_URL__'] = 'TextAndUrlToPayOnlineIfApplicable';
297 $substitutionarray['__THIRDPARTY_NAME__'] = '__THIRDPARTY_NAME__';
298 $substitutionarray['__PROJECT_NAME__'] = '__PROJECT_NAME__';
299
300 $parameters = array(
301 'mode' => 'formemail'
302 );
303 complete_substitutions_array($substitutionarray, $langs, $object, $parameters);
304
305 // Array of substitutions
306 $formmail->substit = $substitutionarray;
307
308 // Tableau des parameters complementaires du post
309 $formmail->param['action'] = $action;
310 $formmail->param['models'] = $modelmail; // the filter to know which kind of template emails to show. 'none' means no template suggested.
311 $formmail->param['models_id'] = GETPOSTINT('modelmailselected') ? GETPOSTINT('modelmailselected') : '-1';
312 $formmail->param['id'] = implode(',', $arrayofselected);
313 // $formmail->param['returnurl']=$_SERVER["PHP_SELF"].'?id='.$object->id;
314 if (getDolGlobalString('MAILING_LIMIT_SENDBYWEB') && count($listofselectedrecipientobjid) > $conf->global->MAILING_LIMIT_SENDBYWEB) {
315 // Note: MAILING_LIMIT_SENDBYWEB may be forced by conf.php file and variable $dolibarr_mailing_limit_sendbyweb
316 $langs->load("errors");
317 print img_warning().' '.$langs->trans('WarningNumberOfRecipientIsRestrictedInMassAction', getDolGlobalString('MAILING_LIMIT_SENDBYWEB'));
318 print ' - <a href="javascript: window.history.go(-1)">'.$langs->trans("GoBack").'</a>';
319 $arrayofmassactions = array();
320 } else {
321 print $formmail->get_form();
322 }
323
324 print dol_get_fiche_end();
325}
326
327if ($massaction == 'edit_extrafields') {
328 require_once DOL_DOCUMENT_ROOT.'/core/class/extrafields.class.php';
329 $elementtype = $objecttmp->element;
331 $extrafields = new ExtraFields($db);
332 $keysuffix = '';
333 $extrafields->fetch_name_optionals_label($elementtype);
334 $extrafields_list = $extrafields->attributes[$elementtype]['label'];
335
336 $formquestion = array();
337 if (!empty($extrafields_list)) {
338 $myParamExtra = $object->showOptionals($extrafields, 'create');
339
340 foreach ($extrafields_list as $extraKey => $extraLabel) {
341 $extrafields_list[$extraKey] = $langs->trans($extraLabel);
342 }
343
344 $formquestion[] = array(
345 'type' => 'other',
346 'value' => $form->selectarray('extrafield-key-to-update', $extrafields_list, GETPOST('extrafield-key-to-update'), 1)
347 );
348
349
350 $outputShowOutputFields = '<div class="extrafields-inputs">';
351
352 foreach ($extrafields_list as $extraKey => $extraLabel) {
353 $outputShowOutputFields .= '<div class="mass-action-extrafield" data-extrafield="'.$extraKey.'" style="display:none;" >';
354 $outputShowOutputFields .= '<br><span>'. $langs->trans('NewValue').'</span>';
355 $outputShowOutputFields .= $extrafields->showInputField($extraKey, '', '', $keysuffix, '', 0, $objecttmp->id, $objecttmp->table_element);
356 $outputShowOutputFields .= '</div>';
357 }
358 $outputShowOutputFields .= '<script>
359 jQuery(function($) {
360 $("#extrafield-key-to-update").on(\'change\',function(){
361 let selectedExtrtafield = $(this).val();
362 if($(".extrafields-inputs .product_extras_"+selectedExtrtafield) != undefined){
363 $(".mass-action-extrafield").hide();
364 $(".mass-action-extrafield[data-extrafield=" + selectedExtrtafield + "]").show();
365 }
366 });
367 });
368 </script>';
369 $outputShowOutputFields .= '</div>';
370
371
372
373 $formquestion[] = array(
374 'type' => 'other',
375 'value' => $outputShowOutputFields
376 );
377
378 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmEditExtrafield"), $langs->trans("ConfirmEditExtrafieldQuestion", count($toselect)), "confirm_edit_value_extrafields", $formquestion, 1, 0, 200, 500, 1);
379 } else {
380 setEventMessage($langs->trans("noExtrafields"));
381 }
382}
383
384if ($massaction == 'preenable') {
385 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassEnabling"), $langs->trans("ConfirmMassEnablingQuestion", count($toselect)), "enable", null, 'yes', 0, 200, 500, 1);
386}
387if ($massaction == 'predisable') {
388 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassDisabling"), $langs->trans("ConfirmMassDisablingQuestion", count($toselect)), "disable", null, '', 0, 200, 500, 1);
389}
390if ($massaction == 'presetcommercial') {
391 $formquestion = array();
392 $userlist = $form->select_dolusers('', '', 0, null, 0, '', '', 0, 0, 0, 'AND u.statut = 1', 0, '', '', 0, 1);
393 $formquestion[] = array('type' => 'other',
394 'name' => 'affectedcommercial',
395 'label' => $form->editfieldkey('AllocateCommercial', 'commercial_id', '', $object, 0),
396 'value' => $form->multiselectarray('commercial', $userlist, null, 0, 0, 'quatrevingtpercent widthcentpercentminusx', 0, 0, '', '', '', 1));
397 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmAllocateCommercial"), $langs->trans("ConfirmAllocateCommercialQuestion", count($toselect)), "affectcommercial", $formquestion, 1, 0, 200, 500, 1);
398}
399if ($massaction == 'unsetcommercial') {
400 $formquestion = array();
401 $userlist = $form->select_dolusers('', '', 0, null, 0, '', '', 0, 0, 0, 'AND u.statut = 1', 0, '', '', 0, 1);
402 $formquestion[] = array('type' => 'other',
403 'name' => 'unassigncommercial',
404 'label' => $form->editfieldkey('UnallocateCommercial', 'commercial_id', '', $object, 0),
405 'value' => $form->multiselectarray('commercial', $userlist, null, 0, 0, 'quatrevingtpercent widthcentpercentminusx', 0, 0, '', '', '', 1));
406 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmUnallocateCommercial"), $langs->trans("ConfirmUnallocateCommercialQuestion", count($toselect)), "unassigncommercial", $formquestion, 1, 0, 200, 500, 1);
407}
408
409if ($massaction == 'preapproveleave') {
410 print $form->formconfirm($_SERVER["PHP_SELF"], $langs->trans("ConfirmMassLeaveApproval"), $langs->trans("ConfirmMassLeaveApprovalQuestion", count($toselect)), "approveleave", null, 'yes', 0, 200, 500, 1);
411}
412
413// Allow Pre-Mass-Action hook (eg for confirmation dialog)
414$parameters = array(
415 'toselect' => isset($toselect) ? $toselect : array(),
416 'uploaddir' => isset($uploaddir) ? $uploaddir : null,
417 'massaction' => $massaction
418);
419
420$reshook = $hookmanager->executeHooks('doPreMassActions', $parameters, $object, $action);
421if ($reshook < 0) {
422 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
423} else {
424 print $hookmanager->resPrint;
425}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
Class to manage members of a foundation.
Class to manage categories.
Class to manage contact/addresses.
Class to manage standard extra fields.
Class permettant la generation du formulaire html d'envoi de mail unitaire Usage: $formail = new Form...
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage Dolibarr users.
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
setEventMessage($mesgs, $style='mesgs', $noduplicate=0)
Set event message in dol_events session object.
complete_substitutions_array(&$substitutionarray, $outputlangs, $object=null, $parameters=null, $callfunc="completesubstitutionarray")
Complete the $substitutionarray with more entries coming from external module that had set the "subst...
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
getCommonSubstitutionArray($outputlangs, $onlykey=0, $exclude=null, $object=null, $include=null)
Return array of possible common substitutions.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_hash($chain, $type='0', $nosalt=0)
Returns a hash (non reversible encryption) of a string.