30require
'../../main.inc.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
33require_once DOL_DOCUMENT_ROOT.
'/core/lib/member.lib.php';
34require_once DOL_DOCUMENT_ROOT.
'/adherents/class/adherent_type.class.php';
47$langs->loadLangs(array(
"admin",
"members"));
49$action =
GETPOST(
'action',
'aZ09');
62if ($action ==
'setMEMBER_ENABLE_PUBLIC') {
70if ($action ==
'update') {
71 $public =
GETPOST(
'MEMBER_ENABLE_PUBLIC');
72 if (
GETPOST(
'MEMBER_NEWFORM_AMOUNT') !==
'') {
77 $minamount =
GETPOST(
'MEMBER_MIN_AMOUNT');
78 $publiccounters =
GETPOST(
'MEMBER_COUNTERS_ARE_PUBLIC');
79 $showtable =
GETPOST(
'MEMBER_SHOW_TABLE');
80 $showvoteallowed =
GETPOST(
'MEMBER_SHOW_VOTE_ALLOWED');
81 $payonline =
GETPOST(
'MEMBER_NEWFORM_PAYONLINE');
82 $forcetype =
GETPOSTINT(
'MEMBER_NEWFORM_FORCETYPE');
83 $forcemorphy =
GETPOST(
'MEMBER_NEWFORM_FORCEMORPHY',
'aZ09');
90 $res =
dolibarr_set_const($db,
"MEMBER_HIDE_VOTE_ALLOWED", $showvoteallowed ? 0 : 1,
'chaine', 0,
'',
$conf->entity);
97 if ($forcemorphy ==
'-1') {
119$form =
new Form($db);
121$title = $langs->trans(
"MembersSetup");
122$help_url =
'EN:Module_Foundations|FR:Module_Adhérents|ES:Módulo_Miembros|DE:Modul_Mitglieder';
124llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-member page-admin_website');
127$linkback =
'<a href="'.DOL_URL_ROOT.
'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToModuleList").
'</a>';
134print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="post">';
135print
'<input type="hidden" name="action" value="update">';
136print
'<input type="hidden" name="token" value="'.newToken().
'">';
140if (
$conf->use_javascript_ajax) {
141 print
"\n".
'<script type="text/javascript">';
142 print
'jQuery(document).ready(function () {
145 if (jQuery("#MEMBER_NEWFORM_PAYONLINE").val()==\'-1\')
147 jQuery("#tremail").hide();
151 jQuery("#tremail").show();
154 function initfields()
156 if (jQuery("#MEMBER_ENABLE_PUBLIC").val()==\'0\')
158 jQuery("#trforcetype, #tramount, #tredit, #trpayment, #tremail").hide();
160 if (jQuery("#MEMBER_ENABLE_PUBLIC").val()==\'1\')
162 jQuery("#trforcetype, #tramount, #tredit, #trpayment").show();
163 if (jQuery("#MEMBER_NEWFORM_PAYONLINE").val()==\'-1\') jQuery("#tremail").hide();
164 else jQuery("#tremail").show();
168 jQuery("#MEMBER_ENABLE_PUBLIC").change(function() { initfields(); });
169 jQuery("#MEMBER_NEWFORM_PAYONLINE").change(function() { initemail(); });
171 print
'</script>'.
"\n";
175print
'<span class="opacitymedium">'.$langs->trans(
"BlankSubscriptionFormDesc").
'</span><br><br>';
179$enabledisablehtml = $langs->trans(
"EnablePublicSubscriptionForm").
' ';
182 $enabledisablehtml .=
'<a class="reposition valignmiddle" href="'.$_SERVER[
"PHP_SELF"].
'?action=setMEMBER_ENABLE_PUBLIC&token='.
newToken().
'&value=1'.$param.
'">';
183 $enabledisablehtml .=
img_picto($langs->trans(
"Disabled"),
'switch_off');
184 $enabledisablehtml .=
'</a>';
187 $enabledisablehtml .=
'<a class="reposition valignmiddle" href="'.$_SERVER[
"PHP_SELF"].
'?action=setMEMBER_ENABLE_PUBLIC&token='.
newToken().
'&value=0'.$param.
'">';
188 $enabledisablehtml .=
img_picto($langs->trans(
"Activated"),
'switch_on');
189 $enabledisablehtml .=
'</a>';
191print $enabledisablehtml;
192print
'<input type="hidden" id="MEMBER_ENABLE_PUBLIC" name="MEMBER_ENABLE_PUBLIC" value="'.(!
getDolGlobalString(
'MEMBER_ENABLE_PUBLIC') ? 0 : 1).
'">';
200 print
img_picto(
'',
'globe').
' <span class="opacitymedium">'.$langs->trans(
'BlankSubscriptionForm').
'</span><br>';
201 if (isModEnabled(
'multicompany')) {
202 $entity_qr =
'?entity='.((int)
$conf->entity);
208 $urlwithouturlroot = preg_replace(
'/'.preg_quote(DOL_URL_ROOT,
'/').
'$/i',
'', trim($dolibarr_main_url_root));
209 $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT;
212 print
'<div class="urllink">';
213 print
'<input type="text" id="publicurlmember" class="quatrevingtpercentminusx" value="'.$urlwithroot.
'/public/members/new.php'.$entity_qr.
'">';
214 print
'<a target="_blank" rel="noopener noreferrer" href="'.$urlwithroot.
'/public/members/new.php'.$entity_qr.
'">'.
img_picto(
'',
'globe',
'class="paddingleft"').
'</a>';
220 print
'<div class="div-table-responsive-no-min">';
221 print
'<table class="noborder centpercent">';
223 print
'<tr class="liste_titre">';
224 print
'<td>'.$langs->trans(
"Parameter").
'</td>';
225 print
'<td>'.$langs->trans(
"Value").
'</td>';
230 print
'<tr class="oddeven drag" id="trforcetype"><td>';
231 print $langs->trans(
"ForceMemberType");
233 $listofval = array();
234 $listofval += $adht->liste_array(1);
236 print $form->selectarray(
"MEMBER_NEWFORM_FORCETYPE", $listofval, $forcetype, count($listofval) > 1 ? 1 : 0);
237 print
"</td></tr>\n";
241 $morphys[
"phy"] = $langs->trans(
"Physical");
242 $morphys[
"mor"] = $langs->trans(
"Moral");
243 print
'<tr class="oddeven drag" id="trforcenature"><td>';
244 print $langs->trans(
"ForceMemberNature");
247 print $form->selectarray(
"MEMBER_NEWFORM_FORCEMORPHY", $morphys, $forcenature, 1);
248 print
"</td></tr>\n";
251 print
'<tr class="oddeven" id="tramount"><td>';
252 print $langs->trans(
"DefaultAmount");
254 print
'<input type="text" class="right width50" id="MEMBER_NEWFORM_AMOUNT" name="MEMBER_NEWFORM_AMOUNT" value="'.getDolGlobalString(
'MEMBER_NEWFORM_AMOUNT').
'">';
255 print
"</td></tr>\n";
258 print
'<tr class="oddeven" id="tredit"><td>';
259 print $langs->trans(
"MinimumAmount");
261 print
'<input type="text" class="right width50" id="MEMBER_MIN_AMOUNT" name="MEMBER_MIN_AMOUNT" value="'.getDolGlobalString(
'MEMBER_MIN_AMOUNT').
'">';
262 print
"</td></tr>\n";
265 print
'<tr class="oddeven" id="tredit"><td>';
266 print $langs->trans(
"MemberCountersArePublic");
268 print $form->selectyesno(
"MEMBER_COUNTERS_ARE_PUBLIC",
getDolGlobalInt(
'MEMBER_COUNTERS_ARE_PUBLIC'), 1,
false, 0, 1);
269 print
"</td></tr>\n";
273 print
'<tr class="oddeven" id="tredit"><td>';
274 print $langs->trans(
"MembersShowMembershipTypesTable");
276 print $form->selectyesno(
"MEMBER_SHOW_TABLE", !$skiptable, 1,
false, 0, 1);
277 print
"</td></tr>\n";
281 print
'<tr class="oddeven" id="tredit"><td>';
282 print $langs->trans(
"MembersShowVotesAllowed");
284 print $form->selectyesno(
"MEMBER_SHOW_VOTE_ALLOWED", !$hidevoteallowed, 1,
false, 0, 1);
285 print
"</td></tr>\n";
288 print
'<tr class="oddeven" id="trpayment"><td>';
289 print $langs->trans(
"MEMBER_NEWFORM_PAYONLINE");
291 $listofval = array();
292 $listofval[
'-1'] = $langs->trans(
'No');
293 $listofval[
'all'] = $langs->trans(
'Yes').
' ('.$langs->trans(
"VisitorCanChooseItsPaymentMode").
')';
294 if (isModEnabled(
'paybox')) {
295 $listofval[
'paybox'] =
'Paybox';
297 if (isModEnabled(
'paypal')) {
298 $listofval[
'paypal'] =
'PayPal';
300 if (isModEnabled(
'stripe')) {
301 $listofval[
'stripe'] =
'Stripe';
303 print $form->selectarray(
"MEMBER_NEWFORM_PAYONLINE", $listofval,
getDolGlobalString(
'MEMBER_NEWFORM_PAYONLINE'), 0);
304 print
"</td></tr>\n";
309 print
'<div class="center">';
310 print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
"Modify").
'">';
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($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Class to manage members type.
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)
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.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
member_admin_prepare_head()
Return array head with list of tabs to view object information.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.