dolibarr 24.0.0-beta
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-2026 Frédéric France <frederic.france@free.fr>
5 * Copyright (C) 2024-2025 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
28require_once DOL_DOCUMENT_ROOT.'/core/modules/holiday/modules_holiday.php';
29
34{
35 // variables inherited from ModelNumRefHolidays class
36 public $name = 'Immaculate';
37 public $version = 'dolibarr';
38
42 public $position = 100;
43
44
48 public function __construct()
49 {
50 $this->code_auto = 1;
51 }
52
59 public function info($langs)
60 {
61 global $db, $langs;
62
63 $langs->load("bills");
64
65 $form = new Form($db);
66
67 $texte = $langs->trans('GenericNumRefModelDesc')."<br>\n";
68 $texte .= '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
69 $texte .= '<input type="hidden" name="token" value="'.newToken().'">';
70 $texte .= '<input type="hidden" name="action" value="updateMask">';
71 $texte .= '<input type="hidden" name="maskconstholiday" value="HOLIDAY_IMMACULATE_MASK">';
72 $texte .= '<input type="hidden" name="page_y" value="">';
73
74 $texte .= '<table class="nobordernopadding centpercent">';
75
76 $tooltip = $langs->trans("GenericMaskCodes", $langs->transnoentities("Holiday"), $langs->transnoentities("Holiday"));
77 $tooltip .= $langs->trans("GenericMaskCodes1");
78 $tooltip .= '<br>';
79 $tooltip .= $langs->trans("GenericMaskCodes2");
80 $tooltip .= '<br>';
81 $tooltip .= $langs->trans("GenericMaskCodes3");
82 $tooltip .= $langs->trans("GenericMaskCodes4a", $langs->transnoentities("Holiday"), $langs->transnoentities("Holiday"));
83 $tooltip .= $langs->trans("GenericMaskCodes5");
84 //$tooltip .= '<br>'.$langs->trans("GenericMaskCodes5b");
85
86 $texte .= '<tr><td>'.$langs->trans("Mask").':</td>';
87 $texte .= '<td class="right">'.$form->textwithpicto('<input type="text" class="flat minwidth175" name="maskholiday" value="'.getDolGlobalString('HOLIDAY_IMMACULATE_MASK').'">', $tooltip, 1, 'help', 'valignmiddle', 0, 3, $this->name).'</td>';
88 $texte .= '<td class="left" rowspan="2">&nbsp; <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button" value="'.$langs->trans("Save").'"></td>';
89 $texte .= '</tr>';
90 $texte .= '</table>';
91 $texte .= '</form>';
92
93 return $texte;
94 }
95
101 public function getExample()
102 {
103 global $db, $langs, $user;
104 require_once DOL_DOCUMENT_ROOT . '/holiday/class/holiday.class.php';
105
106 $holiday = new Holiday($db);
107 $holiday->initAsSpecimen();
108
109 $old_login = $user->login;
110 $user->login = 'UUUUUUU';
111 $numExample = $this->getNextValue($user, $holiday);
112 $user->login = $old_login;
113
114 if (!$numExample) {
115 $numExample = $langs->trans('NotConfigured');
116 }
117
118 return $numExample;
119 }
120
128 public function getNextValue($objsoc, $holiday)
129 {
130 global $db;
131
132 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
133
134 $mask = getDolGlobalString('HOLIDAY_IMMACULATE_MASK');
135
136 if (!$mask) {
137 $this->error = 'NotConfigured';
138 return 0;
139 }
140
141 $numFinal = get_next_value($db, $mask, 'holiday', 'ref', '', $objsoc, $holiday->date_create);
142
143 return $numFinal;
144 }
145}
Class to manage generation of HTML components Only common components must be here.
Class of the module paid holiday.
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.
if(!isModEnabled('ai')||!getDolGlobalString('AI_ASSISTANT_ENABLED')) global $db
API class for accounts.
get_next_value($db, $mask, $table, $field, $where='', $objsoc='', $date='', $mode='next', $bentityon=true, $objuser=null, $forceentity=null, $objbookkeeping=null)
Return last or next value for a mask (according to area we should not reset)
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:133