dolibarr 20.0.0
website.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2006-2015 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2006-2012 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
27// Load Dolibarr environment
28require '../../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
30require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
31require_once DOL_DOCUMENT_ROOT.'/core/lib/member.lib.php';
32require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent_type.class.php';
33
34// Load translation files required by the page
35$langs->loadLangs(array("admin", "members"));
36
37$action = GETPOST('action', 'aZ09');
38
39if (!$user->admin) {
41}
42
43$error = 0;
44
45
46/*
47 * Actions
48 */
49
50if ($action == 'setMEMBER_ENABLE_PUBLIC') {
51 if (GETPOST('value')) {
52 dolibarr_set_const($db, 'MEMBER_ENABLE_PUBLIC', 1, 'chaine', 0, '', $conf->entity);
53 } else {
54 dolibarr_set_const($db, 'MEMBER_ENABLE_PUBLIC', 0, 'chaine', 0, '', $conf->entity);
55 }
56}
57
58if ($action == 'update') {
59 $public = GETPOST('MEMBER_ENABLE_PUBLIC');
60 if (GETPOST('MEMBER_NEWFORM_AMOUNT') !== '') {
61 $amount = price2num(GETPOST('MEMBER_NEWFORM_AMOUNT'), 'MT', 2);
62 } else {
63 $amount = '';
64 }
65 $minamount = GETPOST('MEMBER_MIN_AMOUNT');
66 $publiccounters = GETPOST('MEMBER_COUNTERS_ARE_PUBLIC');
67 $showtable = GETPOST('MEMBER_SHOW_TABLE');
68 $showvoteallowed = GETPOST('MEMBER_SHOW_VOTE_ALLOWED');
69 $payonline = GETPOST('MEMBER_NEWFORM_PAYONLINE');
70 $forcetype = GETPOSTINT('MEMBER_NEWFORM_FORCETYPE');
71 $forcemorphy = GETPOST('MEMBER_NEWFORM_FORCEMORPHY', 'aZ09');
72
73 $res = dolibarr_set_const($db, "MEMBER_ENABLE_PUBLIC", $public, 'chaine', 0, '', $conf->entity);
74 $res = dolibarr_set_const($db, "MEMBER_NEWFORM_AMOUNT", $amount, 'chaine', 0, '', $conf->entity);
75 $res = dolibarr_set_const($db, "MEMBER_MIN_AMOUNT", $minamount, 'chaine', 0, '', $conf->entity);
76 $res = dolibarr_set_const($db, "MEMBER_COUNTERS_ARE_PUBLIC", $publiccounters, 'chaine', 0, '', $conf->entity);
77 $res = dolibarr_set_const($db, "MEMBER_SKIP_TABLE", !$showtable, 'chaine', 0, '', $conf->entity); // Logic is reversed for retrocompatibility: "skip -> show"
78 $res = dolibarr_set_const($db, "MEMBER_HIDE_VOTE_ALLOWED", !$showvoteallowed, 'chaine', 0, '', $conf->entity); // Logic is reversed for retrocompatibility: "hide -> show"
79 $res = dolibarr_set_const($db, "MEMBER_NEWFORM_PAYONLINE", $payonline, 'chaine', 0, '', $conf->entity);
80 if ($forcetype < 0) {
81 $res = dolibarr_del_const($db, "MEMBER_NEWFORM_FORCETYPE", $conf->entity);
82 } else {
83 $res = dolibarr_set_const($db, "MEMBER_NEWFORM_FORCETYPE", $forcetype, 'chaine', 0, '', $conf->entity);
84 }
85 if ($forcemorphy == '-1') {
86 $res = dolibarr_del_const($db, "MEMBER_NEWFORM_FORCEMORPHY", $conf->entity);
87 } else {
88 $res = dolibarr_set_const($db, "MEMBER_NEWFORM_FORCEMORPHY", $forcemorphy, 'chaine', 0, '', $conf->entity);
89 }
90
91 if (!($res > 0)) {
92 $error++;
93 }
94
95 if (!$error) {
96 setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
97 } else {
98 setEventMessages($langs->trans("Error"), null, 'errors');
99 }
100}
101
102
103/*
104 * View
105 */
106
107$form = new Form($db);
108
109$title = $langs->trans("MembersSetup");
110$help_url = 'EN:Module_Foundations|FR:Module_Adh&eacute;rents|ES:M&oacute;dulo_Miembros|DE:Modul_Mitglieder';
111llxHeader('', $title, $help_url);
112
113
114$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
115print load_fiche_titre($title, $linkback, 'title_setup');
116
118
119
120
121print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
122print '<input type="hidden" name="action" value="update">';
123print '<input type="hidden" name="token" value="'.newToken().'">';
124
125print dol_get_fiche_head($head, 'website', $langs->trans("Members"), -1, 'user');
126
127if ($conf->use_javascript_ajax) {
128 print "\n".'<script type="text/javascript">';
129 print 'jQuery(document).ready(function () {
130 function initemail()
131 {
132 if (jQuery("#MEMBER_NEWFORM_PAYONLINE").val()==\'-1\')
133 {
134 jQuery("#tremail").hide();
135 }
136 else
137 {
138 jQuery("#tremail").show();
139 }
140 }
141 function initfields()
142 {
143 if (jQuery("#MEMBER_ENABLE_PUBLIC").val()==\'0\')
144 {
145 jQuery("#trforcetype, #tramount, #tredit, #trpayment, #tremail").hide();
146 }
147 if (jQuery("#MEMBER_ENABLE_PUBLIC").val()==\'1\')
148 {
149 jQuery("#trforcetype, #tramount, #tredit, #trpayment").show();
150 if (jQuery("#MEMBER_NEWFORM_PAYONLINE").val()==\'-1\') jQuery("#tremail").hide();
151 else jQuery("#tremail").show();
152 }
153 }
154 initfields();
155 jQuery("#MEMBER_ENABLE_PUBLIC").change(function() { initfields(); });
156 jQuery("#MEMBER_NEWFORM_PAYONLINE").change(function() { initemail(); });
157 })';
158 print '</script>'."\n";
159}
160
161
162print '<span class="opacitymedium">'.$langs->trans("BlankSubscriptionFormDesc").'</span><br><br>';
163
164$param = '';
165
166$enabledisablehtml = $langs->trans("EnablePublicSubscriptionForm").' ';
167if (!getDolGlobalString('MEMBER_ENABLE_PUBLIC')) {
168 // Button off, click to enable
169 $enabledisablehtml .= '<a class="reposition valignmiddle" href="'.$_SERVER["PHP_SELF"].'?action=setMEMBER_ENABLE_PUBLIC&token='.newToken().'&value=1'.$param.'">';
170 $enabledisablehtml .= img_picto($langs->trans("Disabled"), 'switch_off');
171 $enabledisablehtml .= '</a>';
172} else {
173 // Button on, click to disable
174 $enabledisablehtml .= '<a class="reposition valignmiddle" href="'.$_SERVER["PHP_SELF"].'?action=setMEMBER_ENABLE_PUBLIC&token='.newToken().'&value=0'.$param.'">';
175 $enabledisablehtml .= img_picto($langs->trans("Activated"), 'switch_on');
176 $enabledisablehtml .= '</a>';
177}
178print $enabledisablehtml;
179print '<input type="hidden" id="MEMBER_ENABLE_PUBLIC" name="MEMBER_ENABLE_PUBLIC" value="'.(!getDolGlobalString('MEMBER_ENABLE_PUBLIC') ? 0 : 1).'">';
180
181print '<br><br>';
182
183
184if (getDolGlobalString('MEMBER_ENABLE_PUBLIC')) {
185 print '<br>';
186 //print $langs->trans('FollowingLinksArePublic').'<br>';
187 print img_picto('', 'globe').' <span class="opacitymedium">'.$langs->trans('BlankSubscriptionForm').'</span><br>';
188 if (isModEnabled('multicompany')) {
189 $entity_qr = '?entity='.((int) $conf->entity);
190 } else {
191 $entity_qr = '';
192 }
193
194 // Define $urlwithroot
195 $urlwithouturlroot = preg_replace('/'.preg_quote(DOL_URL_ROOT, '/').'$/i', '', trim($dolibarr_main_url_root));
196 $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT; // This is to use external domain name found into config file
197 //$urlwithroot=DOL_MAIN_URL_ROOT; // This is to use same domain name than current
198
199 print '<div class="urllink">';
200 print '<input type="text" id="publicurlmember" class="quatrevingtpercentminusx" value="'.$urlwithroot.'/public/members/new.php'.$entity_qr.'">';
201 print '<a target="_blank" rel="noopener noreferrer" href="'.$urlwithroot.'/public/members/new.php'.$entity_qr.'">'.img_picto('', 'globe', 'class="paddingleft"').'</a>';
202 print '</div>';
203 print ajax_autoselect('publicurlmember');
204
205 print '<br><br>';
206
207 print '<div class="div-table-responsive-no-min">';
208 print '<table class="noborder centpercent">';
209
210 print '<tr class="liste_titre">';
211 print '<td>'.$langs->trans("Parameter").'</td>';
212 print '<td>'.$langs->trans("Value").'</td>';
213 print "</tr>\n";
214
215 // Force Type
216 $adht = new AdherentType($db);
217 print '<tr class="oddeven drag" id="trforcetype"><td>';
218 print $langs->trans("ForceMemberType");
219 print '</td><td>';
220 $listofval = array();
221 $listofval += $adht->liste_array(1);
222 $forcetype = getDolGlobalInt('MEMBER_NEWFORM_FORCETYPE', -1);
223 print $form->selectarray("MEMBER_NEWFORM_FORCETYPE", $listofval, $forcetype, count($listofval) > 1 ? 1 : 0);
224 print "</td></tr>\n";
225
226 // Force nature of member (mor/phy)
227 $morphys = array();
228 $morphys["phy"] = $langs->trans("Physical");
229 $morphys["mor"] = $langs->trans("Moral");
230 print '<tr class="oddeven drag" id="trforcenature"><td>';
231 print $langs->trans("ForceMemberNature");
232 print '</td><td>';
233 $forcenature = getDolGlobalInt('MEMBER_NEWFORM_FORCEMORPHY', 0);
234 print $form->selectarray("MEMBER_NEWFORM_FORCEMORPHY", $morphys, $forcenature, 1);
235 print "</td></tr>\n";
236
237 // Amount
238 print '<tr class="oddeven" id="tramount"><td>';
239 print $langs->trans("DefaultAmount");
240 print '</td><td>';
241 print '<input type="text" class="right width50" id="MEMBER_NEWFORM_AMOUNT" name="MEMBER_NEWFORM_AMOUNT" value="'.getDolGlobalString('MEMBER_NEWFORM_AMOUNT').'">';
242 print "</td></tr>\n";
243
244 // Min amount
245 print '<tr class="oddeven" id="tredit"><td>';
246 print $langs->trans("MinimumAmount");
247 print '</td><td>';
248 print '<input type="text" class="right width50" id="MEMBER_MIN_AMOUNT" name="MEMBER_MIN_AMOUNT" value="'.getDolGlobalString('MEMBER_MIN_AMOUNT').'">';
249 print "</td></tr>\n";
250
251 // SHow counter of validated members publicly
252 print '<tr class="oddeven" id="tredit"><td>';
253 print $langs->trans("MemberCountersArePublic");
254 print '</td><td>';
255 print $form->selectyesno("MEMBER_COUNTERS_ARE_PUBLIC", getDolGlobalInt('MEMBER_COUNTERS_ARE_PUBLIC'), 1, false, 0, 1);
256 print "</td></tr>\n";
257
258 // Show the table of all available membership types. If not, show a form (as the default was for Dolibarr <=16.0)
259 $skiptable = getDolGlobalInt('MEMBER_SKIP_TABLE');
260 print '<tr class="oddeven" id="tredit"><td>';
261 print $langs->trans("MembersShowMembershipTypesTable");
262 print '</td><td>';
263 print $form->selectyesno("MEMBER_SHOW_TABLE", !$skiptable, 1, false, 0, 1); // Reverse the logic "hide -> show" for retrocompatibility
264 print "</td></tr>\n";
265
266 // Show "vote allowed" setting for membership types
267 $hidevoteallowed = getDolGlobalInt('MEMBER_HIDE_VOTE_ALLOWED');
268 print '<tr class="oddeven" id="tredit"><td>';
269 print $langs->trans("MembersShowVotesAllowed");
270 print '</td><td>';
271 print $form->selectyesno("MEMBER_SHOW_VOTE_ALLOWED", !$hidevoteallowed, 1, false, 0, 1); // Reverse the logic "hide -> show" for retrocompatibility
272 print "</td></tr>\n";
273
274 // Jump to an online payment page
275 print '<tr class="oddeven" id="trpayment"><td>';
276 print $langs->trans("MEMBER_NEWFORM_PAYONLINE");
277 print '</td><td>';
278 $listofval = array();
279 $listofval['-1'] = $langs->trans('No');
280 $listofval['all'] = $langs->trans('Yes').' ('.$langs->trans("VisitorCanChooseItsPaymentMode").')';
281 if (isModEnabled('paybox')) {
282 $listofval['paybox'] = 'Paybox';
283 }
284 if (isModEnabled('paypal')) {
285 $listofval['paypal'] = 'PayPal';
286 }
287 if (isModEnabled('stripe')) {
288 $listofval['stripe'] = 'Stripe';
289 }
290 print $form->selectarray("MEMBER_NEWFORM_PAYONLINE", $listofval, getDolGlobalString('MEMBER_NEWFORM_PAYONLINE'), 0);
291 print "</td></tr>\n";
292
293 print '</table>';
294 print '</div>';
295
296 print '<div class="center">';
297 print '<input type="submit" class="button button-edit" value="'.$langs->trans("Modify").'">';
298 print '</div>';
299}
300
301
302print dol_get_fiche_end();
303
304print '</form>';
305
306// End of page
307llxFooter();
308$db->close();
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.
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:55
llxFooter()
Empty footer.
Definition wrapper.php:69
Class to manage members type.
Class to manage generation of HTML components Only common components must be here.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
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.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
ajax_autoselect($htmlname, $addlink='', $textonlink='Link')
Make content of an input box selected when we click into input field.
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.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
member_admin_prepare_head()
Return array head with list of tabs to view object information.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.