dolibarr  13.0.2
website_options.php
1 <?php
2 /* Copyright (C) 2004-2017 Laurent Destailleur <eldy@users.sourceforge.net>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program. If not, see <https://www.gnu.org/licenses/>.
16  */
17 
24 require '../main.inc.php';
25 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formadmin.class.php';
26 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formcompany.class.php';
27 require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
28 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
29 require_once DOL_DOCUMENT_ROOT.'/core/lib/website.lib.php';
30 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
31 require_once DOL_DOCUMENT_ROOT.'/core/class/doleditor.class.php';
32 require_once DOL_DOCUMENT_ROOT.'/website/class/website.class.php';
33 
34 // Load translation files required by the page
35 $langs->loadLangs(array('errors', 'admin', 'companies', 'website'));
36 
37 $action = GETPOST('action', 'alpha') ?GETPOST('action', 'alpha') : 'view';
38 $confirm = GETPOST('confirm', 'alpha');
39 $backtopage = GETPOST('backtopage', 'alpha');
40 
41 $rowid = GETPOST('rowid', 'alpha');
42 
43 if (!$user->admin) accessforbidden();
44 
45 $status = 1;
46 
47 // Load variable for pagination
48 $limit = GETPOST('limit', 'int') ?GETPOST('limit', 'int') : $conf->liste_limit;
49 $sortfield = GETPOST('sortfield', 'aZ09comma');
50 $sortorder = GETPOST('sortorder', 'aZ09comma');
51 $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
52 if (empty($page) || $page == -1) { $page = 0; } // If $page is not defined, or '' or -1
53 $offset = $limit * $page;
54 $pageprev = $page - 1;
55 $pagenext = $page + 1;
56 
57 // Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
58 $hookmanager->initHooks(array('admin'));
59 
60 $arrayofparameters = array('WEBSITE_USE_WEBSITE_ACCOUNTS'=>array('css'=>'minwidth200'));
61 
62 
63 /*
64  * Actions
65  */
66 
67 include DOL_DOCUMENT_ROOT.'/core/actions_setmoduleoptions.inc.php';
68 
69 
70 /*
71  * View
72  */
73 
74 $form = new Form($db);
75 $formadmin = new FormAdmin($db);
76 
77 llxHeader('', $langs->trans("WebsiteSetup"));
78 
79 $titre = $langs->trans("WebsiteSetup");
80 $linkback = '<a href="'.($backtopage ? $backtopage : DOL_URL_ROOT.'/admin/modules.php').'">'.$langs->trans("BackToModuleList").'</a>';
81 print load_fiche_titre($titre, $linkback, 'title_setup');
82 
83 // Onglets
84 $head = array();
85 $h = 0;
86 
87 $head[$h][0] = DOL_URL_ROOT."/admin/website.php";
88 $head[$h][1] = $langs->trans("WebSites");
89 $head[$h][2] = 'website';
90 $h++;
91 
92 $head[$h][0] = DOL_URL_ROOT."/admin/website_options.php";
93 $head[$h][1] = $langs->trans("Options");
94 $head[$h][2] = 'options';
95 $h++;
96 
97 print dol_get_fiche_head($head, 'options', '', -1);
98 
99 
100 if ($action == 'edit')
101 {
102  print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">';
103  print '<input type="hidden" name="token" value="'.newToken().'">';
104  print '<input type="hidden" name="action" value="update">';
105 
106  print '<table class="noborder centpercent">';
107  print '<tr class="liste_titre"><td class="titlefield">'.$langs->trans("Parameter").'</td><td>'.$langs->trans("Value").'</td></tr>';
108 
109  foreach ($arrayofparameters as $key => $val)
110  {
111  print '<tr class="oddeven"><td>';
112  print $form->textwithpicto($langs->trans($key), $langs->trans($key.'Tooltip'));
113  print '</td><td><input name="'.$key.'" class="flat '.(empty($val['css']) ? 'minwidth200' : $val['css']).'" value="'.$conf->global->$key.'"></td></tr>';
114  }
115 
116  print '</table>';
117 
118  print '<br><div class="center">';
119  print '<input class="button button-save" type="submit" value="'.$langs->trans("Save").'">';
120  print '</div>';
121 
122  print '</form>';
123  print '<br>';
124 } else {
125  print '<table class="noborder centpercent">';
126  print '<tr class="liste_titre"><td class="titlefield">'.$langs->trans("Parameter").'</td><td>'.$langs->trans("Value").'</td></tr>';
127 
128  foreach ($arrayofparameters as $key => $val)
129  {
130  print '<tr class="oddeven"><td>';
131  print $form->textwithpicto($langs->trans($key), $langs->trans($key.'Tooltip'));
132  print '</td><td>'.$conf->global->$key.'</td></tr>';
133  }
134 
135  print '</table>';
136 
137  print '<div class="tabsAction">';
138  print '<a class="butAction" href="'.$_SERVER["PHP_SELF"].'?action=edit">'.$langs->trans("Modify").'</a>';
139  print '</div>';
140 }
141 
142 
144 
145 // End of page
146 llxFooter();
147 $db->close();
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Class to generate html code for admin pages.
llxHeader()
Empty header.
Definition: wrapper.php:45
Class to manage generation of HTML components Only common components must be here.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname.
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 ...
dol_get_fiche_head($links=array(), $active= '', $title= '', $notab=0, $picto= '', $pictoisfullpath=0, $morehtmlright= '', $morecss= '', $limittoshow=0, $moretabssuffix= '')
Show tabs of a record.
print
Draft customers invoices.
Definition: index.php:89
dol_get_fiche_end($notab=0)
Return tab footer of a card.
llxFooter()
Empty footer.
Definition: wrapper.php:59