dolibarr 18.0.6
setup.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2008-2011 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2011-2017 Juanjo Menent <jmenent@2byte.es>
4 * Copyright (C) 2021 Nicolas ZABOURI <info@inovea-conseil.com>
5 * Copyright (C) 2022 Alexandre Spangaro <aspangaro@open-dsi.fr>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
27// Load Dolibarr environment
28require '../../main.inc.php'; // Load $user and permissions
29require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
30require_once DOL_DOCUMENT_ROOT.'/product/class/html.formproduct.class.php';
31require_once DOL_DOCUMENT_ROOT.'/core/lib/pdf.lib.php';
32require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
33require_once DOL_DOCUMENT_ROOT."/core/lib/takepos.lib.php";
34require_once DOL_DOCUMENT_ROOT.'/compta/facture/class/facture.class.php';
35
36// If socid provided by ajax company selector
37if (!empty($_REQUEST['CASHDESK_ID_THIRDPARTY_id'])) {
38 $_GET['CASHDESK_ID_THIRDPARTY'] = GETPOST('CASHDESK_ID_THIRDPARTY_id', 'alpha');
39 $_POST['CASHDESK_ID_THIRDPARTY'] = GETPOST('CASHDESK_ID_THIRDPARTY_id', 'alpha');
40 $_REQUEST['CASHDESK_ID_THIRDPARTY'] = GETPOST('CASHDESK_ID_THIRDPARTY_id', 'alpha');
41}
42
43// Security check
44if (!$user->admin) {
46}
47
48$langs->loadLangs(array("admin", "cashdesk"));
49
50global $db, $mysoc;
51
52$sql = "SELECT code, libelle FROM ".MAIN_DB_PREFIX."c_paiement";
53$sql .= " WHERE entity IN (".getEntity('c_paiement').")";
54$sql .= " AND active = 1";
55$sql .= " ORDER BY libelle";
56$resql = $db->query($sql);
57$paiements = array();
58if ($resql) {
59 while ($obj = $db->fetch_object($resql)) {
60 array_push($paiements, $obj);
61 }
62}
63
64$action = GETPOST('action', 'aZ09');
65
66
67/*
68 * Actions
69 */
70
71$error = 0;
72
73if ($action == 'set') {
74 $db->begin();
75
76 $res = dolibarr_set_const($db, "TAKEPOS_ROOT_CATEGORY_ID", GETPOST('TAKEPOS_ROOT_CATEGORY_ID', 'alpha'), 'chaine', 0, '', $conf->entity);
77 $res = dolibarr_set_const($db, "TAKEPOS_SUPPLEMENTS_CATEGORY", GETPOST('TAKEPOS_SUPPLEMENTS_CATEGORY', 'alpha'), 'chaine', 0, '', $conf->entity);
78 $res = dolibarr_set_const($db, "TAKEPOS_NUMPAD", GETPOST('TAKEPOS_NUMPAD', 'alpha'), 'chaine', 0, '', $conf->entity);
79 $res = dolibarr_set_const($db, "TAKEPOS_SORTPRODUCTFIELD", GETPOST('TAKEPOS_SORTPRODUCTFIELD', 'alpha'), 'chaine', 0, '', $conf->entity);
80 $res = dolibarr_set_const($db, "TAKEPOS_NUM_TERMINALS", GETPOST('TAKEPOS_NUM_TERMINALS', 'alpha'), 'chaine', 0, '', $conf->entity);
81 $res = dolibarr_set_const($db, "TAKEPOS_ADDON", GETPOST('TAKEPOS_ADDON', 'alpha'), 'int', 0, '', $conf->entity);
82 $res = dolibarr_set_const($db, "TAKEPOS_EMAIL_TEMPLATE_INVOICE", GETPOST('TAKEPOS_EMAIL_TEMPLATE_INVOICE', 'alpha'), 'chaine', 0, '', $conf->entity);
83 if (getDolGlobalInt('TAKEPOS_ENABLE_SUMUP')) {
84 $res = dolibarr_set_const($db, "TAKEPOS_SUMUP_AFFILIATE", GETPOST('TAKEPOS_SUMUP_AFFILIATE', 'alpha'), 'chaine', 0, '', $conf->entity);
85 $res = dolibarr_set_const($db, "TAKEPOS_SUMUP_APPID", GETPOST('TAKEPOS_SUMUP_APPID', 'alpha'), 'chaine', 0, '', $conf->entity);
86 }
87 if (isModEnabled('barcode')) {
88 $res = dolibarr_set_const($db, 'TAKEPOS_BARCODE_RULE_TO_INSERT_PRODUCT', GETPOST('TAKEPOS_BARCODE_RULE_TO_INSERT_PRODUCT', 'alpha'), 'chaine', 0, '', $conf->entity);
89 }
90
91 dol_syslog("admin/cashdesk: level ".GETPOST('level', 'alpha'));
92
93 if (!($res > 0)) {
94 $error++;
95 }
96
97 if (!$error) {
98 $db->commit();
99 } else {
100 $db->rollback();
101 }
102} elseif ($action == 'updateMask') {
103 $maskconst = GETPOST('maskconst', 'aZ09');
104 $maskvalue = GETPOST('maskvalue', 'alpha');
105 if ($maskconst && preg_match('/_MASK$/', $maskconst)) {
106 $res = dolibarr_set_const($db, $maskconst, $maskvalue, 'chaine', 0, '', $conf->entity);
107 }
108 if (!($res > 0)) {
109 $error++;
110 }
111} elseif ($action == 'setrefmod') {
112 $value = GETPOST('value', 'alpha');
113 dolibarr_set_const($db, "TAKEPOS_REF_ADDON", $value, 'chaine', 0, '', $conf->entity);
114}
115
116if ($action != '') {
117 if (!$error) {
118 setEventMessage($langs->trans('SetupSaved'));
119 } else {
120 setEventMessages($langs->trans('Error'), null, 'errors');
121 }
122}
123
124
125/*
126 * View
127 */
128
129$form = new Form($db);
130$formproduct = new FormProduct($db);
131
132$help_url = 'EN:Module_Point_of_sale_(TakePOS)';
133
134llxHeader('', $langs->trans("CashDeskSetup"), $help_url);
135
136$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
137print load_fiche_titre($langs->trans("CashDeskSetup").' (TakePOS)', $linkback, 'title_setup');
139print dol_get_fiche_head($head, 'setup', 'TakePOS', -1, 'cash-register');
140
141// Numbering modules
142$now = dol_now();
143$dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
144
145print load_fiche_titre($langs->trans('CashDeskRefNumberingModules'), '', '');
146
147print '<table class="noborder centpercent">';
148print '<tr class="liste_titre">';
149print '<td>'.$langs->trans("Name")."</td>\n";
150print '<td>'.$langs->trans("Description")."</td>\n";
151print '<td class="nowrap">'.$langs->trans("Example")."</td>\n";
152print '<td class="center" width="60">'.$langs->trans("Status").'</td>';
153print '<td class="center" width="16">'.$langs->trans("ShortInfo").'</td>';
154print '</tr>'."\n";
155
156clearstatcache();
157
158foreach ($dirmodels as $reldir) {
159 $dir = dol_buildpath($reldir."core/modules/takepos/");
160
161 if (is_dir($dir)) {
162 $handle = opendir($dir);
163 if (is_resource($handle)) {
164 $var = true;
165
166 while (($file = readdir($handle)) !== false) {
167 if (substr($file, 0, 16) == 'mod_takepos_ref_' && substr($file, dol_strlen($file) - 3, 3) == 'php') {
168 $file = substr($file, 0, dol_strlen($file) - 4);
169
170 require_once $dir.$file.'.php';
171
172 $module = new $file;
173
174 // Show modules according to features level
175 if ($module->version == 'development' && $conf->global->MAIN_FEATURES_LEVEL < 2) {
176 continue;
177 }
178 if ($module->version == 'experimental' && $conf->global->MAIN_FEATURES_LEVEL < 1) {
179 continue;
180 }
181
182 if ($module->isEnabled()) {
183 print '<tr class="oddeven"><td>'.$module->nom."</td><td>\n";
184 print $module->info();
185 print '</td>';
186
187 // Show example of numbering module
188 print '<td class="nowrap">';
189 $tmp = $module->getExample();
190 if (preg_match('/^Error/', $tmp)) {
191 $langs->load("errors");
192 print '<div class="error">'.$langs->trans($tmp).'</div>';
193 } elseif ($tmp == 'NotConfigured') {
194 print $langs->trans($tmp);
195 } else {
196 print $tmp;
197 }
198 print '</td>'."\n";
199
200 print '<td class="center">';
201 if (getDolGlobalString('TAKEPOS_REF_ADDON') == "$file") {
202 print img_picto($langs->trans("Activated"), 'switch_on');
203 } else {
204 print '<a href="'.$_SERVER["PHP_SELF"].'?action=setrefmod&token='.newToken().'&value='.urlencode($file).'">';
205 print img_picto($langs->trans("Disabled"), 'switch_off');
206 print '</a>';
207 }
208 print '</td>';
209
210 // example for next value
211 $invoice = new Facture($db);
212 $invoice->date = $now;
213 $invoice->module_source = 'takepos';
214 $invoice->pos_source = 1;
215
216 // Info
217 $htmltooltip = '';
218 $htmltooltip .= ''.$langs->trans("Version").': <b>'.$module->getVersion().'</b><br>';
219 $nextval = $module->getNextValue($mysoc, $invoice);
220 if ("$nextval" != $langs->trans("NotAvailable")) { // Keep " on nextval
221 $htmltooltip .= ''.$langs->trans("NextValue").': ';
222 if ($nextval) {
223 if (preg_match('/^Error/', $nextval) || $nextval == 'NotConfigured') {
224 $nextval = $langs->trans($nextval);
225 }
226 $htmltooltip .= $nextval.'<br>';
227 } else {
228 $htmltooltip .= $langs->trans($module->error).'<br>';
229 }
230 }
231
232 print '<td align="center">';
233 print $form->textwithpicto('', $htmltooltip, 1, 0);
234 print '</td>';
235
236 print "</tr>\n";
237 }
238 }
239 }
240 closedir($handle);
241 }
242 }
243}
244print "</table><br>\n";
245
246print '<br>';
247
248// Mode
249print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
250print '<input type="hidden" name="token" value="'.newToken().'">';
251print '<input type="hidden" name="action" value="set">';
252
253print '<div class="div-table-responsive-no-min">';
254print '<table class="noborder centpercent">';
255
256print '<tr class="liste_titre">';
257print '<td class="notitlefield">'.$langs->trans("Parameters").'</td><td>'.$langs->trans("Value").'</td>';
258print "</tr>\n";
259
260// Terminals
261print '<tr class="oddeven"><td>';
262print $langs->trans("NumberOfTerminals");
263print '<td colspan="2">';
264print '<input type="number" name="TAKEPOS_NUM_TERMINALS" min="1" value="' . (empty($conf->global->TAKEPOS_NUM_TERMINALS) ? '1' : $conf->global->TAKEPOS_NUM_TERMINALS) . '">';
265print "</td></tr>\n";
266
267// Services
268if (isModEnabled("service")) {
269 print '<tr class="oddeven"><td>';
270 print $langs->trans("CashdeskShowServices");
271 print '<td colspan="2">';
272 print ajax_constantonoff("CASHDESK_SERVICES", array(), $conf->entity, 0, 0, 1, 0);
273 //print $form->selectyesno("CASHDESK_SERVICES", $conf->global->CASHDESK_SERVICES, 1);
274 print "</td></tr>\n";
275}
276
277// Root category for products
278print '<tr class="oddeven"><td>';
279print $form->textwithpicto($langs->trans("RootCategoryForProductsToSell"), $langs->trans("RootCategoryForProductsToSellDesc"));
280print '<td colspan="2">';
281print img_object('', 'category', 'class="paddingright"').$form->select_all_categories(Categorie::TYPE_PRODUCT, getDolGlobalInt('TAKEPOS_ROOT_CATEGORY_ID'), 'TAKEPOS_ROOT_CATEGORY_ID', 64, 0, 0);
282print ajax_combobox('TAKEPOS_ROOT_CATEGORY_ID');
283print "</td></tr>\n";
284
285// Sort product
286print '<tr class="oddeven"><td>';
287print $langs->trans("SortProductField");
288print '<td colspan="2">';
289$prod = new Product($db);
290$array = array('rowid' => 'ID', 'ref' => 'Ref', 'label' => 'Label', 'datec' => 'DateCreation', 'tms' => 'DateModification');
291print $form->selectarray('TAKEPOS_SORTPRODUCTFIELD', $array, (empty($conf->global->TAKEPOS_SORTPRODUCTFIELD) ? 'rowid' : $conf->global->TAKEPOS_SORTPRODUCTFIELD), 0, 0, 0, '', 1);
292print "</td></tr>\n";
293
294print '<tr class="oddeven"><td>';
295print $langs->trans('TakeposGroupSameProduct');
296print '<td colspan="2">';
297print ajax_constantonoff("TAKEPOS_GROUP_SAME_PRODUCT", array(), $conf->entity, 0, 0, 1, 0);
298print "</td></tr>\n";
299
300$substitutionarray = pdf_getSubstitutionArray($langs, null, null, 2);
301$substitutionarray['__(AnyTranslationKey)__'] = $langs->trans("Translation");
302$htmltext = '<i>'.$langs->trans("AvailableVariables").':<br>';
303foreach ($substitutionarray as $key => $val) {
304 $htmltext .= $key.'<br>';
305}
306$htmltext .= '</i>';
307
308// Payment numpad
309print '<tr class="oddeven"><td>';
310print $langs->trans("Paymentnumpad");
311print '<td colspan="2">';
312$array = array(0=>$langs->trans("Numberspad"), 1=>$langs->trans("BillsCoinsPad"));
313print $form->selectarray('TAKEPOS_NUMPAD', $array, (empty($conf->global->TAKEPOS_NUMPAD) ? '0' : $conf->global->TAKEPOS_NUMPAD), 0);
314print "</td></tr>\n";
315
316// Numpad use payment icons
317/*print '<tr class="oddeven"><td>';
318print $langs->trans('TakeposNumpadUsePaymentIcon');
319print '<td colspan="2">';
320print ajax_constantonoff("TAKEPOS_NUMPAD_USE_PAYMENT_ICON", array(), $conf->entity, 0, 0, 1, 0);
321print "</td></tr>\n";
322*/
323
324// Direct Payment
325print '<tr class="oddeven"><td>';
326print $langs->trans('DirectPaymentButton');
327print '<td colspan="2">';
328print ajax_constantonoff("TAKEPOS_DIRECT_PAYMENT", array(), $conf->entity, 0, 0, 1, 0);
329//print $form->selectyesno("TAKEPOS_DIRECT_PAYMENT", $conf->global->TAKEPOS_DIRECT_PAYMENT, 1);
330print "</td></tr>\n";
331
332// Head Bar
333/*print '<tr class="oddeven"><td>';
334print $langs->trans('HeadBar');
335print '<td colspan="2">';
336print $form->selectyesno("TAKEPOS_HEAD_BAR", $conf->global->TAKEPOS_HEAD_BAR, 1);
337print "</td></tr>\n";
338*/
339
340// Email template for send invoice
341print '<tr class="oddeven"><td>';
342print $langs->trans('EmailTemplate');
343print '<td colspan="2">';
344include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
345$formmail = new FormMail($db);
346$nboftemplates = $formmail->fetchAllEMailTemplate('facture_send', $user, null, -1); // We set lang=null to get in priority record with no lang
347//$arraydefaultmessage = $formmail->getEMailTemplate($db, $tmp[1], $user, null, 0, 1, '');
348$arrayofmessagename = array();
349if (is_array($formmail->lines_model)) {
350 foreach ($formmail->lines_model as $modelmail) {
351 //var_dump($modelmail);
352 $moreonlabel = '';
353 if (!empty($arrayofmessagename[$modelmail->label])) {
354 $moreonlabel = ' <span class="opacitymedium">('.$langs->trans("SeveralLangugeVariatFound").')</span>';
355 }
356 $arrayofmessagename[$modelmail->id] = $langs->trans(preg_replace('/\‍(|\‍)/', '', $modelmail->topic)).$moreonlabel;
357 }
358}
359//var_dump($arraydefaultmessage);
360//var_dump($arrayofmessagename);
361print $form->selectarray('TAKEPOS_EMAIL_TEMPLATE_INVOICE', $arrayofmessagename, $conf->global->TAKEPOS_EMAIL_TEMPLATE_INVOICE, 'None', 1, 0, '', 0, 0, 0, '', '', 1);
362print "</td></tr>\n";
363
364// Control cash box at opening pos
365print '<tr class="oddeven"><td>';
366print $langs->trans('ControlCashOpening');
367print '<td colspan="2">';
368print ajax_constantonoff("TAKEPOS_CONTROL_CASH_OPENING", array(), $conf->entity, 0, 0, 1, 0);
369print "</td></tr>\n";
370
371// Gift receipt
372print '<tr class="oddeven"><td>';
373print $langs->trans('GiftReceiptButton');
374print '<td colspan="2">';
375print ajax_constantonoff("TAKEPOS_GIFT_RECEIPT", array(), $conf->entity, 0, 0, 1, 0);
376print "</td></tr>\n";
377
378// Delayed Pay Button
379print '<tr class="oddeven"><td>';
380print $langs->trans('AllowDelayedPayment');
381print '<td colspan="2">';
382print ajax_constantonoff("TAKEPOS_DELAYED_PAYMENT", array(), $conf->entity, 0, 0, 1, 0);
383print "</td></tr>\n";
384
385// Show price without vat
386print '<tr class="oddeven"><td>';
387print $langs->trans('ShowPriceHT');
388print '<td colspan="2">';
389print ajax_constantonoff("TAKEPOS_SHOW_HT", array(), $conf->entity, 0, 0, 1, 0);
390print "</td></tr>\n";
391
392// Barcode rule to insert product
393if (isModEnabled('barcode')) {
394 print '<tr class="oddeven"><td>';
395 print $form->textwithpicto($langs->trans("TakeposBarcodeRuleToInsertProduct"), $langs->trans("TakeposBarcodeRuleToInsertProductDesc"));
396 print '<td colspan="2">';
397 print '<input type="text" name="TAKEPOS_BARCODE_RULE_TO_INSERT_PRODUCT" value="' . (getDolGlobalString('TAKEPOS_BARCODE_RULE_TO_INSERT_PRODUCT')) . '">';
398 print "</td></tr>\n";
399}
400
401// Numbering module
402//print '<tr class="oddeven"><td>';
403//print $langs->trans("BillsNumberingModule");
404//print '<td colspan="2">';
405//$array = array(0=>$langs->trans("Default"), "terminal"=>$langs->trans("ByTerminal"));
406//$dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
407//foreach ($dirmodels as $reldir)
408//{
409// $dir = dol_buildpath($reldir."core/modules/facture/");
410// if (is_dir($dir))
411// {
412// $handle = opendir($dir);
413// if (is_resource($handle))
414// {
415// while (($file = readdir($handle)) !== false)
416// {
417// if (!is_dir($dir.$file) || (substr($file, 0, 1) <> '.' && substr($file, 0, 3) <> 'CVS'))
418// {
419// $filebis = $file;
420// $classname = preg_replace('/\.php$/', '', $file);
421// // For compatibility
422// if (!is_file($dir.$filebis))
423// {
424// $filebis = $file."/".$file.".modules.php";
425// $classname = "mod_facture_".$file;
426// }
427// // Check if there is a filter on country
428// preg_match('/\-(.*)_(.*)$/', $classname, $reg);
429// if (!empty($reg[2]) && $reg[2] != strtoupper($mysoc->country_code)) continue;
430//
431// $classname = preg_replace('/\-.*$/', '', $classname);
432// if (!class_exists($classname) && is_readable($dir.$filebis) && (preg_match('/mod_/', $filebis) || preg_match('/mod_/', $classname)) && substr($filebis, dol_strlen($filebis) - 3, 3) == 'php')
433// {
434// // Charging the numbering class
435// require_once $dir.$filebis;
436//
437// $module = new $classname($db);
438//
439// // Show modules according to features level
440// if ($module->version == 'development' && $conf->global->MAIN_FEATURES_LEVEL < 2) continue;
441// if ($module->version == 'experimental' && $conf->global->MAIN_FEATURES_LEVEL < 1) continue;
442//
443// if ($module->isEnabled())
444// {
445// $array[preg_replace('/\-.*$/', '', preg_replace('/\.php$/', '', $file))] = preg_replace('/\-.*$/', '', preg_replace('/mod_facture_/', '', preg_replace('/\.php$/', '', $file)));
446// }
447// }
448// }
449// }
450// closedir($handle);
451// }
452// }
453//}
454//
455//print $form->selectarray('TAKEPOS_ADDON', $array, (empty($conf->global->TAKEPOS_ADDON) ? '0' : $conf->global->TAKEPOS_ADDON), 0);
456//print "</td></tr>\n";
457
458print '</table>';
459print '</div>';
460
461
462// Sumup options
463if (getDolGlobalInt('TAKEPOS_ENABLE_SUMUP')) {
464 print '<br>';
465
466 print '<div class="div-table-responsive-no-min">';
467 print '<table class="noborder centpercent">';
468
469 print '<tr class="liste_titre">';
470 print '<td class="titlefield">'.$langs->trans("Sumup").'</td><td>'.$langs->trans("Value").'</td>';
471 print "</tr>\n";
472
473 print '<tr class="oddeven"><td>';
474 print $langs->trans("SumupAffiliate");
475 print '<td colspan="2">';
476 print '<input type="text" name="TAKEPOS_SUMUP_AFFILIATE" value="'.$conf->global->TAKEPOS_SUMUP_AFFILIATE.'"></input>';
477 print "</td></tr>\n";
478 print '<tr class="oddeven"><td>';
479 print $langs->trans("SumupAppId");
480 print '<td colspan="2">';
481 print '<input type="text" name="TAKEPOS_SUMUP_APPID" value="'.$conf->global->TAKEPOS_SUMUP_APPID.'"></input>';
482 print "</td></tr>\n";
483
484 print '</table>';
485 print '</div>';
486}
487
488print '<br>';
489
490print $form->buttonsSaveCancel("Save", '');
491
492print "</form>\n";
493
494llxFooter();
495$db->close();
dolibarr_set_const($db, $name, $value, $type='chaine', $visible=0, $note='', $entity=1)
Insert a parameter (key,value) into database (delete old key then insert it again).
ajax_combobox($htmlname, $events=array(), $minLengthToAutocomplete=0, $forcefocus=0, $widthTypeOfAutocomplete='resolve', $idforemptyvalue='-1', $morecss='')
Convert a html select field into an ajax combobox.
Definition ajax.lib.php:464
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:56
llxFooter()
Empty footer.
Definition wrapper.php:70
Class to manage invoices.
Class to manage generation of HTML components Only common components must be here.
Classe permettant la generation du formulaire html d'envoi de mail unitaire Usage: $formail = new For...
Class with static methods for building HTML components related to products Only components common to ...
Class to manage products or services.
load_fiche_titre($titre, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
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.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
setEventMessage($mesgs, $style='mesgs', $noduplicate=0)
Set event message in dol_events session object.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return dolibarr global constant int value.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
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.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
pdf_getSubstitutionArray($outputlangs, $exclude=null, $object=null, $onlykey=0, $include=null)
Return array of possible substitutions for PDF content (without external module substitutions).
Definition pdf.lib.php:758
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
takepos_admin_prepare_head()
Prepare array with list of tabs.