30require
'../main.inc.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/pdf.lib.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/lib/bank.lib.php';
34require_once DOL_DOCUMENT_ROOT.
'/compta/paiement/cheque/class/remisecheque.class.php';
37$langs->loadLangs(array(
"admin",
"companies",
"bills",
"other",
"banks"));
43$action =
GETPOST(
'action',
'aZ09');
44$value =
GETPOST(
'value',
'alpha');
48 $conf->global->CHEQUERECEIPTS_ADDON =
'mod_chequereceipts_mint.php';
57if ($action ==
'updateMask') {
58 $maskconstchequereceipts =
GETPOST(
'maskconstchequereceipts',
'aZ09');
59 $maskchequereceipts =
GETPOST(
'maskchequereceipts',
'alpha');
63 if ($maskconstchequereceipts && preg_match(
'/_MASK$/', $maskconstchequereceipts)) {
64 $res =
dolibarr_set_const($db, $maskconstchequereceipts, $maskchequereceipts,
'chaine', 0,
'', $conf->entity);
78if ($action ==
'setmod') {
79 dolibarr_set_const($db,
"CHEQUERECEIPTS_ADDON", $value,
'chaine', 0,
'', $conf->entity);
82if ($action ==
'set_BANK_CHEQUERECEIPT_FREE_TEXT') {
83 $freetext =
GETPOST(
'BANK_CHEQUERECEIPT_FREE_TEXT',
'restricthtml');
85 $res =
dolibarr_set_const($db,
"BANK_CHEQUERECEIPT_FREE_TEXT", $freetext,
'chaine', 0,
'', $conf->entity);
102$dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
103llxHeader(
"", $langs->trans(
"BankSetupModule"),
'',
'', 0, 0,
'',
'',
'',
'mod-admin page-chequereceipts');
105$form =
new Form($db);
107$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
108print
load_fiche_titre($langs->trans(
"BankSetupModule"), $linkback,
'title_setup');
111print
dol_get_fiche_head($head,
'checkreceipts', $langs->trans(
"BankSetupModule"), -1,
'account');
117print
load_fiche_titre($langs->trans(
"ChequeReceiptsNumberingModule"),
'',
'');
119print
'<div class="div-table-responsive-no-min">';
120print
'<table class="noborder centpercent">';
121print
'<tr class="liste_titre">';
122print
'<td>'.$langs->trans(
"Name").
'</td>';
123print
'<td>'.$langs->trans(
"Description").
'</td>';
124print
'<td class="nowrap">'.$langs->trans(
"Example").
'</td>';
125print
'<td class="center" width="60">'.$langs->trans(
"Status").
'</td>';
126print
'<td class="center" width="16">'.$langs->trans(
"ShortInfo").
'</td>';
131foreach ($dirmodels as $reldir) {
134 $handle = opendir($dir);
135 if (is_resource($handle)) {
136 while (($file = readdir($handle)) !==
false) {
137 if (!is_dir($dir.$file) || (substr($file, 0, 1) !=
'.' && substr($file, 0, 3) !=
'CVS')) {
139 $name = substr($file, 4,
dol_strlen($file) - 16);
140 $classname = preg_replace(
'/\.php$/',
'', $file);
142 if (!is_file($dir.$filebis)) {
143 $filebis = $file.
"/".$file.
".modules.php";
144 $classname =
"mod_chequereceipt_".$file;
147 preg_match(
'/\-(.*)_(.*)$/', $classname, $reg);
148 if (!empty($reg[2]) && $reg[2] != strtoupper($mysoc->country_code)) {
152 $classname = preg_replace(
'/\-.*$/',
'', $classname);
153 if (!class_exists($classname) && is_readable($dir.$filebis) && (preg_match(
'/mod_/', $filebis) || preg_match(
'/mod_/', $classname)) && substr($filebis,
dol_strlen($filebis) - 3, 3) ==
'php') {
155 require_once $dir.$filebis;
157 $module =
new $classname($db);
158 '@phan-var-force ModeleNumRefChequeReceipts $module';
161 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
164 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
168 if ($module->isEnabled()) {
169 print
'<tr class="oddeven"><td width="100">';
170 print(empty($module->name) ? $name : $module->
name);
173 print $module->info($langs);
178 print
'<td class="nowrap">';
179 $tmp = $module->getExample();
180 if (preg_match(
'/^Error/', $tmp)) {
181 $langs->load(
"errors");
182 print
'<div class="error">'.$langs->trans($tmp).
'</div>';
183 } elseif ($tmp ==
'NotConfigured') {
184 print
'<span class="opacitymedium">'.$langs->trans($tmp).
'</span>';
190 print
'<td class="center">';
191 if ($conf->global->CHEQUERECEIPTS_ADDON == $file ||
getDolGlobalString(
'CHEQUERECEIPTS_ADDON') .
'.php' == $file) {
192 print
img_picto($langs->trans(
"Activated"),
'switch_on');
194 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>';
199 $chequereceipts->initAsSpecimen();
203 $htmltooltip .=
''.$langs->trans(
"Version").
': <b>'.$module->getVersion().
'</b><br>';
204 $nextval = $module->getNextValue($mysoc, $chequereceipts);
205 if (
"$nextval" != $langs->trans(
"NotAvailable")) {
206 $htmltooltip .= $langs->trans(
"NextValue").
': ';
208 if (preg_match(
'/^Error/', $nextval) || $nextval ==
'NotConfigured') {
209 $nextval = $langs->trans($nextval);
211 $htmltooltip .= $nextval.
'<br>';
213 $htmltooltip .= $langs->trans($module->error).
'<br>';
217 print
'<td class="center">';
218 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
221 if (!empty($module->error)) {
249print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="post">';
250print
'<input type="hidden" name="token" value="'.newToken().
'">';
251print
'<input type="hidden" name="action" value="set_BANK_CHEQUERECEIPT_FREE_TEXT">';
253print
'<table class="noborder centpercent">';
254print
'<tr class="liste_titre">';
255print
'<td>'.$langs->trans(
"Parameters").
'</td>';
256print
'<td class="center" width="60"> </td>';
257print
'<td width="80"> </td>';
261$substitutionarray[
'__(AnyTranslationKey)__'] = $langs->trans(
"Translation");
262$htmltext =
'<i>'.$langs->trans(
"AvailableVariables").
':<br>';
263foreach ($substitutionarray as $key => $val) {
264 $htmltext .= $key.
'<br>';
268print
'<tr class="oddeven"><td colspan="2">';
269print $form->textwithpicto($langs->trans(
"FreeLegalTextOnChequeReceipts"), $langs->trans(
"AddCRIfTooLong").
'<br><br>'.$htmltext, 1,
'help',
'', 0, 2,
'freetexttooltip').
'<br>';
270$variablename =
'BANK_CHEQUERECEIPT_FREE_TEXT';
272 print
'<textarea name="'.$variablename.
'" class="flat" cols="120">'.
getDolGlobalString($variablename).
'</textarea>';
274 include_once DOL_DOCUMENT_ROOT.
'/core/class/doleditor.class.php';
276 print $doleditor->Create();
278print
'</td><td class="right">';
279print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
"Modify").
'">';
284print
'</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($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
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($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
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.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_htmloutput_mesg($mesgstring='', $mesgarray=array(), $style='ok', $keepembedded=0)
Print formatted messages to output (Used to show messages on html output).
getDolGlobalString($key, $default='')
Return a 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.