27require
'../main.inc.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/lib/reception.lib.php';
30require_once DOL_DOCUMENT_ROOT.
'/core/lib/pdf.lib.php';
31require_once DOL_DOCUMENT_ROOT.
'/reception/class/reception.class.php';
33$langs->loadLangs(array(
"admin",
"receptions",
'other'));
40$action =
GETPOST(
'action',
'aZ09');
41$value =
GETPOST(
'value',
'alpha');
42$modulepart =
GETPOST(
'modulepart',
'aZ09');
44$label =
GETPOST(
'label',
'alpha');
45$scandir =
GETPOST(
'scan_dir',
'alpha');
55 dolibarr_set_const($db,
"MAIN_SUBMODULE_RECEPTION",
"1",
'chaine', 0,
'', $conf->entity);
59 $conf->global->RECEPTION_ADDON_NUMBER =
'mod_reception_beryl';
67include DOL_DOCUMENT_ROOT.
'/core/actions_setmoduleoptions.inc.php';
69if ($action ==
'updateMask') {
70 $maskconst =
GETPOST(
'maskconstreception',
'aZ09');
71 $maskvalue =
GETPOST(
'maskreception',
'alpha');
72 if (!empty($maskconst) && preg_match(
'/_MASK$/', $maskconst)) {
73 $res =
dolibarr_set_const($db, $maskconst, $maskvalue,
'chaine', 0,
'', $conf->entity);
83} elseif ($action ==
'set_param') {
84 $freetext =
GETPOST(
'RECEPTION_FREE_TEXT',
'restricthtml');
85 $res =
dolibarr_set_const($db,
"RECEPTION_FREE_TEXT", $freetext,
'chaine', 0,
'', $conf->entity);
91 $draft =
GETPOST(
'RECEPTION_DRAFT_WATERMARK',
'alpha');
92 $res =
dolibarr_set_const($db,
"RECEPTION_DRAFT_WATERMARK", trim($draft),
'chaine', 0,
'', $conf->entity);
101} elseif ($action ==
'specimen') {
102 $modele =
GETPOST(
'module',
'alpha');
105 $exp->initAsSpecimen();
110 $dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
111 foreach ($dirmodels as $reldir) {
112 $file =
dol_buildpath($reldir.
"core/modules/reception/doc/pdf_".$modele.
".modules.php", 0);
113 if (file_exists($file)) {
114 $classname =
"pdf_".$modele;
119 if ($classname !==
'') {
122 $module =
new $classname($db);
123 '@phan-var-force ModelePdfReception $module';
125 if ($module->write_file($exp, $langs) > 0) {
126 header(
"Location: ".DOL_URL_ROOT.
"/document.php?modulepart=reception&file=SPECIMEN.pdf");
134 dol_syslog($langs->trans(
"ErrorModuleNotFound"), LOG_ERR);
136} elseif ($action ==
'set') {
139} elseif ($action ==
'del') {
142 if ($conf->global->RECEPTION_ADDON_PDF ==
"$value") {
146} elseif ($action ==
'setdoc') {
148 if (
dolibarr_set_const($db,
"RECEPTION_ADDON_PDF", $value,
'chaine', 0,
'', $conf->entity)) {
151 $conf->global->RECEPTION_ADDON_PDF = $value;
159} elseif ($action ==
'setmodel') {
160 dolibarr_set_const($db,
"RECEPTION_ADDON_NUMBER", $value,
'chaine', 0,
'', $conf->entity);
170$dirmodels = array_merge(array(
'/'), (array) $conf->modules_parts[
'models']);
172$form =
new Form($db);
174llxHeader(
'', $langs->trans(
"ReceptionsSetup"),
'',
'', 0, 0,
'',
'',
'',
'mod-admin page-reception_setup');
176$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php">'.$langs->trans(
"BackToModuleList").
'</a>';
177print
load_fiche_titre($langs->trans(
"ReceptionsSetup"), $linkback,
'title_setup');
181print
dol_get_fiche_head($head,
'reception', $langs->trans(
"Receptions"), -1,
'reception');
187print
'<div class="div-table-responsive-no-min">';
188print
'<table class="noborder centpercent">';
189print
'<tr class="liste_titre">';
190print
'<td width="100">'.$langs->trans(
"Name").
'</td>';
191print
'<td>'.$langs->trans(
"Description").
'</td>';
192print
'<td>'.$langs->trans(
"Example").
'</td>';
193print
'<td class="center" width="60">'.$langs->trans(
"Status").
'</td>';
194print
'<td class="center" width="80">'.$langs->trans(
"ShortInfo").
'</td>';
199foreach ($dirmodels as $reldir) {
203 $handle = opendir($dir);
204 if (is_resource($handle)) {
205 while (($file = readdir($handle)) !==
false) {
206 if (substr($file, 0, 14) ==
'mod_reception_' && substr($file,
dol_strlen($file) - 3, 3) ==
'php') {
207 $file = substr($file, 0,
dol_strlen($file) - 4);
209 require_once $dir.
'/'.$file.
'.php';
211 $module =
new $file();
213 '@phan-var-force ModelNumRefReception $module';
215 if ($module->isEnabled()) {
217 if ($module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
220 if ($module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
224 print
'<tr><td>'.$module->getName($langs).
"</td>\n";
226 print $module->info($langs);
230 print
'<td class="nowrap">';
231 $tmp = $module->getExample();
232 if (preg_match(
'/^Error/', $tmp)) {
233 $langs->load(
"errors");
234 print
'<div class="error">'.$langs->trans($tmp).
'</div>';
235 } elseif ($tmp ==
'NotConfigured') {
236 print
'<span class="opacitymedium">'.$langs->trans($tmp).
'</span>';
242 print
'<td class="center">';
243 if ($conf->global->RECEPTION_ADDON_NUMBER ==
"$file") {
244 print
img_picto($langs->trans(
"Activated"),
'switch_on');
246 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setmodel&token='.
newToken().
'&value='.urlencode($file).(!empty($module->name) ?
'&label='.urlencode($module->name) :
'').
'">';
247 print
img_picto($langs->trans(
"Disabled"),
'switch_off');
253 $reception->initAsSpecimen();
257 $htmltooltip .=
''.$langs->trans(
"Version").
': <b>'.$module->getVersion().
'</b><br>';
258 $nextval = $module->getNextValue($mysoc, $reception);
259 if (
"$nextval" != $langs->trans(
"NotAvailable")) {
260 $htmltooltip .=
''.$langs->trans(
"NextValue").
': ';
262 if (preg_match(
'/^Error/', $nextval) || $nextval ==
'NotConfigured') {
263 $nextval = $langs->trans($nextval);
265 $htmltooltip .= $nextval.
'<br>';
267 $htmltooltip .= $langs->trans($module->error).
'<br>';
271 print
'<td class="center">';
272 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
299$sql .=
" FROM ".MAIN_DB_PREFIX.
"document_model";
300$sql .=
" WHERE type = '".$db->escape($type).
"'";
301$sql .=
" AND entity = ".$conf->entity;
303$resql = $db->query($sql);
306 $num_rows = $db->num_rows($resql);
307 while ($i < $num_rows) {
308 $array = $db->fetch_array($resql);
309 if (is_array($array)) {
310 array_push($def, $array[0]);
318print
'<div class="div-table-responsive-no-min">';
319print
'<table class="noborder centpercent">';
320print
'<tr class="liste_titre">';
321print
'<td width="140">'.$langs->trans(
"Name").
'</td>';
322print
'<td>'.$langs->trans(
"Description").
'</td>';
323print
'<td align="center" width="60">'.$langs->trans(
"Status").
'</td>';
324print
'<td align="center" width="60">'.$langs->trans(
"Default").
'</td>';
325print
'<td align="center" width="80" class="nowrap">'.$langs->trans(
"ShortInfo").
'</td>';
326print
'<td align="center" width="80" class="nowrap">'.$langs->trans(
"Preview").
'</td>';
331foreach ($dirmodels as $reldir) {
332 foreach (array(
'',
'/doc') as $valdir) {
333 $realpath = $reldir.
"core/modules/reception".$valdir;
337 $handle = opendir($dir);
338 if (is_resource($handle)) {
340 while (($file = readdir($handle)) !==
false) {
346 foreach ($filelist as $file) {
347 if (preg_match(
'/\.modules\.php$/i', $file) && preg_match(
'/^(pdf_|doc_)/', $file)) {
348 if (file_exists($dir.
'/'.$file)) {
349 $name = substr($file, 4,
dol_strlen($file) - 16);
350 $classname = substr($file, 0,
dol_strlen($file) - 12);
352 require_once $dir.
'/'.$file;
353 $module =
new $classname($db);
355 '@phan-var-force ModelePdfReception $module';
357 $modulequalified = 1;
358 if (isset($module->version) && $module->version ==
'development' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 2) {
359 $modulequalified = 0;
361 if (isset($module->version) && $module->version ==
'experimental' &&
getDolGlobalInt(
'MAIN_FEATURES_LEVEL') < 1) {
362 $modulequalified = 0;
365 if ($modulequalified) {
366 print
'<tr><td width="100">';
367 print(empty($module->name) ? $name : $module->
name);
369 if (method_exists($module,
'info')) {
370 print $module->info($langs);
372 print $module->description;
377 if (in_array($name, $def)) {
378 print
'<td class="center">'.
"\n";
379 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=del&token='.
newToken().
'&value='.urlencode($name).
'">';
380 print
img_picto($langs->trans(
"Enabled"),
'switch_on');
384 print
'<td class="center">'.
"\n";
385 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=set&token='.
newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'">'.
img_picto($langs->trans(
"Disabled"),
'switch_off').
'</a>';
390 print
'<td class="center">';
391 if ($conf->global->RECEPTION_ADDON_PDF == $name) {
392 print
img_picto($langs->trans(
"Default"),
'on');
394 print
'<a class="reposition" href="'.$_SERVER[
"PHP_SELF"].
'?action=setdoc&token='.
newToken().
'&value='.urlencode($name).
'&scan_dir='.urlencode($module->scandir).
'&label='.urlencode($module->name).
'" alt="'.$langs->trans(
"Default").
'">'.
img_picto($langs->trans(
"Disabled"),
'off').
'</a>';
399 $htmltooltip =
''.$langs->trans(
"Name").
': '.$module->name;
400 $htmltooltip .=
'<br>'.$langs->trans(
"Type").
': '.($module->type ? $module->type : $langs->trans(
"Unknown"));
401 if ($module->type ==
'pdf') {
402 $htmltooltip .=
'<br>'.$langs->trans(
"Width").
'/'.$langs->trans(
"Height").
': '.$module->page_largeur.
'/'.$module->page_hauteur;
404 $htmltooltip .=
'<br>'.$langs->trans(
"Path").
': '.preg_replace(
'/^\//',
'', $realpath).
'/'.$file;
406 $htmltooltip .=
'<br><br><u>'.$langs->trans(
"FeaturesSupported").
':</u>';
407 $htmltooltip .=
'<br>'.$langs->trans(
"Logo").
': '.
yn($module->option_logo, 1, 1);
408 $htmltooltip .=
'<br>'.$langs->trans(
"PaymentMode").
': '.
yn($module->option_modereg, 1, 1);
409 $htmltooltip .=
'<br>'.$langs->trans(
"PaymentConditions").
': '.
yn($module->option_condreg, 1, 1);
410 $htmltooltip .=
'<br>'.$langs->trans(
"MultiLanguage").
': '.
yn($module->option_multilang, 1, 1);
411 $htmltooltip .=
'<br>'.$langs->trans(
"WatermarkOnDraftOrders").
': '.
yn($module->option_draft_watermark, 1, 1);
413 print
'<td class="center">';
414 print $form->textwithpicto(
'', $htmltooltip, 1, 0);
418 print
'<td class="center">';
419 if ($module->type ==
'pdf') {
420 print
'<a href="'.$_SERVER[
"PHP_SELF"].
'?action=specimen&module='.$name.
'&scan_dir='.$module->scandir.
'&label='.urlencode($module->name).
'">'.
img_object($langs->trans(
"Preview"),
'pdf').
'</a>';
422 print
img_object($langs->trans(
"PreviewNotAvailable"),
'generic');
addDocumentModel($name, $type, $label='', $description='')
Add document model used by doc generator.
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).
dolibarr_del_const($db, $name, $entity=1)
Delete a constant.
delDocumentModel($name, $type)
Delete document model used by doc generator.
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.
Class to manage receptions.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
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_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'.
yn($yesno, $format=1, $color=0)
Return yes or no in current language.
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_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
reception_admin_prepare_head()
Return array head with list of tabs to view object information.
$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.