28require_once DOL_DOCUMENT_ROOT.
'/core/modules/holiday/modules_holiday.php';
36 public $name =
'Immaculate';
37 public $version =
'dolibarr';
53 public function info($langs)
57 $langs->load(
"bills");
59 $form =
new Form($db);
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%">';
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");
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"> <input type="submit" class="button button-edit reposition smallpaddingimp" name="Button"value="'.$langs->trans(
"Modify").
'"></td>';
92 global $db, $langs, $user;
93 require_once DOL_DOCUMENT_ROOT .
'/holiday/class/holiday.class.php';
96 $holiday->initAsSpecimen();
98 $old_login = $user->login;
99 $user->login =
'UUUUUUU';
101 $user->login = $old_login;
104 $numExample = $langs->trans(
'NotConfigured');
121 require_once DOL_DOCUMENT_ROOT.
'/core/lib/functions2.lib.php';
126 $this->error =
'NotConfigured';
130 $numFinal =
get_next_value($db, $mask,
'holiday',
'ref',
'', $objsoc, $holiday->date_create);
Class of the module paid holiday.
Parent class for all holidays numbering modules.
Class to manage holiday numbering rules Immaculate.
__construct()
Constructor.
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 a Dolibarr global constant string value.