29require
'../main.inc.php';
30require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/lib/pdf.lib.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/bank.lib.php';
33require_once DOL_DOCUMENT_ROOT.
'/compta/paiement/cheque/class/remisecheque.class.php';
36$langs->loadLangs(array(
"admin",
"companies",
"bills",
"other",
"banks"));
42$action =
GETPOST(
'action',
'aZ09');
43$value =
GETPOST(
'value',
'alpha');
47 $conf->global->CHEQUERECEIPTS_ADDON =
'mod_chequereceipts_mint.php';
56if ($action ==
'updateMask') {
57 $maskconstchequereceipts =
GETPOST(
'maskconstchequereceipts',
'aZ09');
58 $maskchequereceipts =
GETPOST(
'maskchequereceipts',
'alpha');
59 if ($maskconstchequereceipts && preg_match(
'/_MASK$/', $maskconstchequereceipts)) {
60 $res =
dolibarr_set_const($db, $maskconstchequereceipts, $maskchequereceipts,
'chaine', 0,
'', $conf->entity);
74if ($action ==
'setmod') {
75 dolibarr_set_const($db,
"CHEQUERECEIPTS_ADDON", $value,
'chaine', 0,
'', $conf->entity);
78if ($action ==
'set_BANK_CHEQUERECEIPT_FREE_TEXT') {
79 $freetext =
GETPOST(
'BANK_CHEQUERECEIPT_FREE_TEXT',
'restricthtml');
81 $res =
dolibarr_set_const($db,
"BANK_CHEQUERECEIPT_FREE_TEXT", $freetext,
'chaine', 0,
'', $conf->entity);
98$dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
99llxHeader(
"", $langs->trans(
"BankSetupModule"));
101$form =
new Form($db);
103$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
104print
load_fiche_titre($langs->trans(
"BankSetupModule"), $linkback,
'title_setup');
107print
dol_get_fiche_head($head,
'checkreceipts', $langs->trans(
"BankSetupModule"), -1,
'account');
113print
load_fiche_titre($langs->trans(
"ChequeReceiptsNumberingModule"),
'',
'');
115print
'<div class="div-table-responsive-no-min">';
116print
'<table class="noborder centpercent">';
117print
'<tr class="liste_titre">';
118print
'<td>'.$langs->trans(
"Name").
'</td>';
119print
'<td>'.$langs->trans(
"Description").
'</td>';
120print
'<td class="nowrap">'.$langs->trans(
"Example").
'</td>';
121print
'<td class="center" width="60">'.$langs->trans(
"Status").
'</td>';
122print
'<td class="center" width="16">'.$langs->trans(
"ShortInfo").
'</td>';
127foreach ($dirmodels as $reldir) {
130 $handle = opendir($dir);
131 if (is_resource($handle)) {
132 while (($file = readdir($handle)) !==
false) {
133 if (!is_dir($dir.$file) || (substr($file, 0, 1) !=
'.' && substr($file, 0, 3) !=
'CVS')) {
135 $name = substr($file, 4,
dol_strlen($file) - 16);
136 $classname = preg_replace(
'/\.php$/',
'', $file);
138 if (!is_file($dir.$filebis)) {
139 $filebis = $file.
"/".$file.
".modules.php";
140 $classname =
"mod_chequereceipt_".$file;
143 preg_match(
'/\-(.*)_(.*)$/', $classname, $reg);
144 if (!empty($reg[2]) && $reg[2] != strtoupper($mysoc->country_code)) {
148 $classname = preg_replace(
'/\-.*$/',
'', $classname);
149 if (!class_exists($classname) && is_readable($dir.$filebis) && (preg_match(
'/mod_/', $filebis) || preg_match(
'/mod_/', $classname)) && substr($filebis,
dol_strlen($filebis) - 3, 3) ==
'php') {
151 require_once $dir.$filebis;
153 $module =
new $classname($db);
156 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
159 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
163 if ($module->isEnabled()) {
164 print
'<tr class="oddeven"><td width="100">';
165 print(empty($module->name) ? $name : $module->
name);
168 print $module->info($langs);
173 print
'<td class="nowrap">';
174 $tmp = $module->getExample();
175 if (preg_match(
'/^Error/', $tmp)) {
176 $langs->load(
"errors");
177 print
'<div class="error">'.$langs->trans($tmp).
'</div>';
178 } elseif ($tmp ==
'NotConfigured') {
179 print
'<span class="opacitymedium">'.$langs->trans($tmp).
'</span>';
185 print
'<td class="center">';
186 if ($conf->global->CHEQUERECEIPTS_ADDON == $file ||
getDolGlobalString(
'CHEQUERECEIPTS_ADDON') .
'.php' == $file) {
187 print
img_picto($langs->trans(
"Activated"),
'switch_on');
189 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setmod&token='.newToken().
'&value='.preg_replace(
'/\.php$/',
'', $file).
'&label='.urlencode($module->name).
'" alt="'.$langs->trans(
"Default").
'">'.
img_picto($langs->trans(
"Disabled"),
'switch_off').
'</a>';
194 $chequereceipts->initAsSpecimen();
198 $htmltooltip .=
''.$langs->trans(
"Version").
': <b>'.$module->getVersion().
'</b><br>';
199 $nextval = $module->getNextValue($mysoc, $chequereceipts);
200 if (
"$nextval" != $langs->trans(
"NotAvailable")) {
201 $htmltooltip .= $langs->trans(
"NextValue").
': ';
203 if (preg_match(
'/^Error/', $nextval) || $nextval ==
'NotConfigured') {
204 $nextval = $langs->trans($nextval);
206 $htmltooltip .= $nextval.
'<br>';
208 $htmltooltip .= $langs->trans($module->error).
'<br>';
212 print
'<td class="center">';
213 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
216 if (!empty($module->error)) {
244print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="post">';
245print
'<input type="hidden" name="token" value="'.newToken().
'">';
246print
'<input type="hidden" name="action" value="set_BANK_CHEQUERECEIPT_FREE_TEXT">';
248print
'<table class="noborder centpercent">';
249print
'<tr class="liste_titre">';
250print
'<td>'.$langs->trans(
"Parameters").
'</td>';
251print
'<td class="center" width="60"> </td>';
252print
'<td width="80"> </td>';
256$substitutionarray[
'__(AnyTranslationKey)__'] = $langs->trans(
"Translation");
257$htmltext =
'<i>'.$langs->trans(
"AvailableVariables").
':<br>';
258foreach ($substitutionarray as $key => $val) {
259 $htmltext .= $key.
'<br>';
263print
'<tr class="oddeven"><td colspan="2">';
264print $form->textwithpicto($langs->trans(
"FreeLegalTextOnChequeReceipts"), $langs->trans(
"AddCRIfTooLong").
'<br><br>'.$htmltext, 1,
'help',
'', 0, 2,
'freetexttooltip').
'<br>';
265$variablename =
'BANK_CHEQUERECEIPT_FREE_TEXT';
267 print
'<textarea name="'.$variablename.
'" class="flat" cols="120">'.
getDolGlobalString($variablename).
'</textarea>';
269 include_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
271 print $doleditor->Create();
273print
'</td><td class="right">';
274print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
"Modify").
'">';
279print
'</table>'.
"\n";
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).
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
bank_admin_prepare_head($object)
Prepare array with list of tabs.
Class to manage a WYSIWYG editor.
Class to manage cheque delivery receipts.
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.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
getDolGlobalInt($key, $default=0)
Return a 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.
dol_htmloutput_mesg($mesgstring='', $mesgarray=array(), $style='ok', $keepembedded=0)
Print formated messages to output (Used to show messages on html output).
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
pdf_getSubstitutionArray($outputlangs, $exclude=null, $object=null, $onlykey=0, $include=null)
Return array of possible substitutions for PDF content (without external module substitutions).
$conf db name
Only used if Module[ID]Name translation string is not found.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.