dolibarr  13.0.2
admin.php
1 <?php
2 /* Copyright (C) 2016 Marcos García <marcosgdf@gmail.com>
3  * Copyright (C) 2018 Frédéric France <frederic.france@netlogic.fr>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program. If not, see <https://www.gnu.org/licenses/>.
17  */
18 
19 require '../../main.inc.php';
20 require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
21 require_once DOL_DOCUMENT_ROOT.'/core/lib/product.lib.php';
22 
23 $langs->loadLangs(array("admin", "products"));
24 
25 $action = GETPOST('action', 'alphanohtml');
26 
27 // Security check
28 if (!$user->admin || (empty($conf->product->enabled) && empty($conf->service->enabled)))
30 
31 $error = 0;
32 
33 
34 /*
35  * Actions
36  */
37 
38 if ($action) {
39  $value = GETPOST('PRODUIT_ATTRIBUTES_HIDECHILD');
40 
41  if (!dolibarr_set_const($db, 'PRODUIT_ATTRIBUTES_HIDECHILD', $value, 'chaine', 0, '', $conf->entity)) {
42  setEventMessages($langs->trans('CoreErrorMessage'), null, 'errors');
43  $error++;
44  }
45 
46  if (!dolibarr_set_const($db, 'PRODUIT_ATTRIBUTES_SEPARATOR', GETPOST('PRODUIT_ATTRIBUTES_SEPARATOR'), 'chaine', 0, '', $conf->entity)) {
47  setEventMessages($langs->trans('CoreErrorMessage'), null, 'errors');
48  $error++;
49  }
50 
51  if (!$error) {
52  setEventMessages($langs->trans('RecordSaved'), null, 'mesgs');
53  }
54 }
55 
56 $title = $langs->trans('ModuleSetup').' '.$langs->trans('Module610Name');
57 llxHeader('', $title);
58 
59 $linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
60 print load_fiche_titre($title, $linkback, 'title_setup');
61 
62 print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">';
63 print '<input type="hidden" name="token" value="'.newToken().'">';
64 print '<input type="hidden" name="action" value="update">';
65 
66 print '<table class="noborder centpercent">';
67 
68 print '<tr class="liste_titre">';
69 print '<th>'.$langs->trans("Parameters").'</th>'."\n";
70 print '<th class="right" width="60">'.$langs->trans("Value").'</th>'."\n";
71 print '</tr>'."\n";
72 
73 print '<tr class="oddeven"><td>'.$langs->trans('HideProductCombinations').'</td><td>';
74 print $form->selectyesno("PRODUIT_ATTRIBUTES_HIDECHILD", $conf->global->PRODUIT_ATTRIBUTES_HIDECHILD, 1).'</td></tr>';
75 
76 print '<tr class="oddeven"><td>'.$langs->trans('CombinationsSeparator').'</td>';
77 if (isset($conf->global->PRODUIT_ATTRIBUTES_SEPARATOR)) {
78  $separator = $conf->global->PRODUIT_ATTRIBUTES_SEPARATOR;
79 } else {
80  $separator = "_";
81 }
82 print '<td class="right"><input size="3" type="text" class="flat" name="PRODUIT_ATTRIBUTES_SEPARATOR" value="'.$separator.'"></td></tr>';
83 
84 print '</table>';
85 
86 print '<br><div class="center"><input type="submit" value="'.$langs->trans("Save").'" class="button button-save"></div>';
87 
88 print '</form>';
89 
90 // End of page
91 llxFooter();
92 $db->close();
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
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).
Definition: admin.lib.php:575
llxHeader()
Empty header.
Definition: wrapper.php:45
setEventMessages($mesg, $mesgs, $style= 'mesgs', $messagekey= '')
Set event messages in dol_events session object.
load_fiche_titre($titre, $morehtmlright= '', $picto= 'generic', $pictoisfullpath=0, $id= '', $morecssontable= '', $morehtmlcenter= '')
Load a title with picto.
accessforbidden($message= '', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program Calling this function terminate execution ...
print
Draft customers invoices.
Definition: index.php:89
llxFooter()
Empty footer.
Definition: wrapper.php:59