dolibarr 20.0.0
mod_holiday_immaculate.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2011-2019 Juanjo Menent <jmenent@2byte.es>
3 * Copyright (C) 2018 Charlene Benke <charlie@patas-monkey.com>
4 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 * or see https://www.gnu.org/
19 */
20
27require_once DOL_DOCUMENT_ROOT.'/core/modules/holiday/modules_holiday.php';
28
33{
34
35 // variables inherited from ModelNumRefHolidays class
36 public $name = 'Immaculate';
37 public $version = 'dolibarr';
38
42 public function __construct()
43 {
44 $this->code_auto = 1;
45 }
46
53 public function info($langs)
54 {
55 global $db, $langs;
56
57 $langs->load("bills");
58
59 $form = new Form($db);
60
61 $texte = $langs->trans('GenericNumRefModelDesc')."<br>\n";
62 $texte .= '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
63 $texte .= '<input type="hidden" name="token" value="'.newToken().'">';
64 $texte .= '<input type="hidden" name="action" value="updateMask">';
65 $texte .= '<input type="hidden" name="maskconstholiday" value="HOLIDAY_IMMACULATE_MASK">';
66 $texte .= '<table class="nobordernopadding" width="100%">';
67
68 $tooltip = $langs->trans("GenericMaskCodes", $langs->transnoentities("Holiday"), $langs->transnoentities("Holiday"));
69 $tooltip .= $langs->trans("GenericMaskCodes2");
70 $tooltip .= $langs->trans("GenericMaskCodes3");
71 $tooltip .= $langs->trans("GenericMaskCodes4a", $langs->transnoentities("Holiday"), $langs->transnoentities("Holiday"));
72 $tooltip .= $langs->trans("GenericMaskCodes5");
73 //$tooltip .= '<br>'.$langs->trans("GenericMaskCodes5b");
74
75 $texte .= '<tr><td>'.$langs->trans("Mask").':</td>';
76 $texte .= '<td class="right">'.$form->textwithpicto('<input type="text" class="flat minwidth175" name="maskholiday" value="'.getDolGlobalString('HOLIDAY_IMMACULATE_MASK').'">', $tooltip, 1, 1).'</td>';
77 $texte .= '<td class="left" rowspan="2">&nbsp; <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button"value="'.$langs->trans("Modify").'"></td>';
78 $texte .= '</tr>';
79 $texte .= '</table>';
80 $texte .= '</form>';
81
82 return $texte;
83 }
84
90 public function getExample()
91 {
92 global $langs, $user;
93
94 $old_login = $user->login;
95 $user->login = 'UUUUUUU';
96 $numExample = $this->getNextValue($user, '');
97 $user->login = $old_login;
98
99 if (!$numExample) {
100 $numExample = $langs->trans('NotConfigured');
101 }
102 return $numExample;
103 }
104
112 public function getNextValue($objsoc, $holiday)
113 {
114 global $db;
115
116 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
117
118 $mask = getDolGlobalString('HOLIDAY_IMMACULATE_MASK');
119
120 if (!$mask) {
121 $this->error = 'NotConfigured';
122 return 0;
123 }
124
125 $numFinal = get_next_value($db, $mask, 'holiday', 'ref', '', $objsoc, $holiday->date_create);
126
127 return $numFinal;
128 }
129}
Class to manage generation of HTML components Only common components must be here.
Parent class for all holidays numbering modules.
Class to manage holiday numbering rules Immaculate.
getExample()
Return numbering example.
getNextValue($objsoc, $holiday)
Return next value.
info($langs)
Return default description of numbering model.
get_next_value($db, $mask, $table, $field, $where='', $objsoc='', $date='', $mode='next', $bentityon=true, $objuser=null, $forceentity=null)
Return last or next value for a mask (according to area we should not reset)
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.