31require
'../../main.inc.php';
42require_once DOL_DOCUMENT_ROOT.
'/core/lib/admin.lib.php';
43require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
44require_once DOL_DOCUMENT_ROOT.
'/core/lib/member.lib.php';
45require_once DOL_DOCUMENT_ROOT.
'/core/lib/payments.lib.php';
46require_once DOL_DOCUMENT_ROOT.
'/adherents/class/adherent_type.class.php';
49$langs->loadLangs(array(
"admin",
"members"));
51$action =
GETPOST(
'action',
'aZ09');
55$hookmanager->initHooks(array(
'newpayment'));
68if ($action ==
'setMEMBER_ENABLE_PUBLIC') {
76if ($action ==
'update') {
77 $public =
GETPOST(
'MEMBER_ENABLE_PUBLIC');
78 if (
GETPOST(
'MEMBER_NEWFORM_AMOUNT') !==
'') {
83 $minamount =
GETPOST(
'MEMBER_MIN_AMOUNT');
84 $publiccounters =
GETPOST(
'MEMBER_COUNTERS_ARE_PUBLIC');
85 $showtable =
GETPOST(
'MEMBER_SHOW_TABLE');
86 $showvoteallowed =
GETPOST(
'MEMBER_SHOW_VOTE_ALLOWED');
87 $payonline =
GETPOST(
'MEMBER_NEWFORM_PAYONLINE');
88 $forcetype =
GETPOSTINT(
'MEMBER_NEWFORM_FORCETYPE');
89 $forcemorphy =
GETPOST(
'MEMBER_NEWFORM_FORCEMORPHY',
'aZ09');
91 $res =
dolibarr_set_const($db,
"MEMBER_ENABLE_PUBLIC", $public,
'chaine', 0,
'', $conf->entity);
92 $res =
dolibarr_set_const($db,
"MEMBER_NEWFORM_AMOUNT", $amount,
'chaine', 0,
'', $conf->entity);
93 $res =
dolibarr_set_const($db,
"MEMBER_MIN_AMOUNT", $minamount,
'chaine', 0,
'', $conf->entity);
94 $res =
dolibarr_set_const($db,
"MEMBER_COUNTERS_ARE_PUBLIC", $publiccounters,
'chaine', 0,
'', $conf->entity);
95 $res =
dolibarr_set_const($db,
"MEMBER_SKIP_TABLE", $showtable ? 0 : 1,
'chaine', 0,
'', $conf->entity);
96 if (GETPOSTISSET(
'MEMBER_HIDE_VOTE_ALLOWED')) {
97 $res =
dolibarr_set_const($db,
"MEMBER_HIDE_VOTE_ALLOWED", $showvoteallowed ? 0 : 1,
'chaine', 0,
'', $conf->entity);
99 $res =
dolibarr_set_const($db,
"MEMBER_NEWFORM_PAYONLINE", $payonline,
'chaine', 0,
'', $conf->entity);
100 if ($forcetype < 0) {
103 $res =
dolibarr_set_const($db,
"MEMBER_NEWFORM_FORCETYPE", $forcetype,
'chaine', 0,
'', $conf->entity);
105 if (empty($forcemorphy) || $forcemorphy ==
'-1') {
108 $res =
dolibarr_set_const($db,
"MEMBER_NEWFORM_FORCEMORPHY", $forcemorphy,
'chaine', 0,
'', $conf->entity);
110 if (GETPOSTISSET(
'MEMBER_SEARCH_MEMBER_PUBLIC_FORM_CREATE')) {
111 $res =
dolibarr_set_const($db,
"MEMBER_SEARCH_MEMBER_PUBLIC_FORM_CREATE",
GETPOST(
'MEMBER_SEARCH_MEMBER_PUBLIC_FORM_CREATE') ==
'yes' ? 1 : 0,
'chaine', 0,
'', $conf->entity);
130$form =
new Form($db);
132$title = $langs->trans(
"MembersSetup");
133$help_url =
'EN:Module_Foundations|FR:Module_Adhérents|ES:Módulo_Miembros|DE:Modul_Mitglieder';
135llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-member page-admin_website');
137$linkback =
'<a href="'.dolBuildUrl(DOL_URL_ROOT.
'/admin/modules.php', [
'restore_lastsearch_values' => 1]).
'">'.
img_picto($langs->trans(
"BackToModuleList"),
'back',
'class="pictofixedwidth"').
'<span class="hideonsmartphone">'.$langs->trans(
"BackToModuleList").
'</span></a>';
145print
'<form action="'.$_SERVER[
"PHP_SELF"].
'" method="post">';
146print
'<input type="hidden" name="action" value="update">';
147print
'<input type="hidden" name="token" value="'.newToken().
'">';
151if ($conf->use_javascript_ajax) {
152 print
"\n".
'<script type="text/javascript">';
153 print
'jQuery(document).ready(function () {
156 if (jQuery("#MEMBER_NEWFORM_PAYONLINE").val()==\'-1\') {
157 jQuery("#tremail").hide();
159 jQuery("#tremail").show();
162 function initfields()
164 if (jQuery("#MEMBER_ENABLE_PUBLIC").val()==\'0\') {
165 jQuery("#trforcetype, #tramount, #tredit, #trpayment, #tremail").hide();
167 if (jQuery("#MEMBER_ENABLE_PUBLIC").val()==\'1\') {
168 jQuery("#trforcetype, #tramount, #tredit, #trpayment").show();
169 if (jQuery("#MEMBER_NEWFORM_PAYONLINE").val()==\'-1\') jQuery("#tremail").hide();
170 else jQuery("#tremail").show();
174 jQuery("#MEMBER_ENABLE_PUBLIC").change(function() { initfields(); });
175 jQuery("#MEMBER_NEWFORM_PAYONLINE").change(function() { initemail(); });
177 print
'</script>'.
"\n";
181print
'<span class="opacitymedium">'.$langs->trans(
"BlankSubscriptionFormDesc").
'</span><br><br>';
185$enabledisablehtml = $langs->trans(
"EnablePublicSubscriptionForm").
' ';
188 $enabledisablehtml .=
'<a class="reposition valignmiddle" href="'.$_SERVER[
"PHP_SELF"].
'?action=setMEMBER_ENABLE_PUBLIC&token='.
newToken().
'&value=1'.$param.
'">';
189 $enabledisablehtml .=
img_picto($langs->trans(
"Disabled"),
'switch_off');
190 $enabledisablehtml .=
'</a>';
193 $enabledisablehtml .=
'<a class="reposition valignmiddle" href="'.$_SERVER[
"PHP_SELF"].
'?action=setMEMBER_ENABLE_PUBLIC&token='.
newToken().
'&value=0'.$param.
'">';
194 $enabledisablehtml .=
img_picto($langs->trans(
"Activated"),
'switch_on');
195 $enabledisablehtml .=
'</a>';
197print $enabledisablehtml;
198print
'<input type="hidden" id="MEMBER_ENABLE_PUBLIC" name="MEMBER_ENABLE_PUBLIC" value="'.(!
getDolGlobalString(
'MEMBER_ENABLE_PUBLIC') ? 0 : 1).
'">';
205 print
img_picto(
'',
'globe').
' <span class="opacitymedium">'.$langs->trans(
'BlankSubscriptionForm').
'</span><br>';
207 $entity_qr =
'?entity='.((int) $conf->entity);
214 $urlwithroot = $urlwithouturlroot.DOL_URL_ROOT;
217 print
'<div class="urllink">';
218 print
'<input type="text" id="publicurlmember" class="quatrevingtpercentminusx" value="'.$urlwithroot.
'/public/members/new.php'.$entity_qr.
'">';
219 print
'<a target="_blank" rel="noopener noreferrer" href="'.$urlwithroot.
'/public/members/new.php'.$entity_qr.
'">'.
img_picto(
'',
'globe',
'class="paddingleft"').
'</a>';
225 print
'<div class="div-table-responsive-no-min">';
226 print
'<table class="noborder centpercent">';
228 print
'<tr class="liste_titre">';
229 print
'<td>'.$langs->trans(
"Parameter").
'</td>';
235 print
'<tr class="oddeven" id="tredit"><td>';
236 print $langs->trans(
"MembersShowMembershipTypesTable");
238 print $form->selectyesno(
"MEMBER_SHOW_TABLE", (
int) !$skiptable, 1,
false, 0, 1);
239 print
"</td></tr>\n";
244 print
'<tr class="oddeven" id="tredit"><td>';
245 print $langs->trans(
"MembersShowVotesAllowed");
247 print $form->selectyesno(
"MEMBER_SHOW_VOTE_ALLOWED", (
int) !$hidevoteallowed, 1,
false, 0, 1);
248 print
"</td></tr>\n";
253 print
'<tr class="oddeven drag" id="trforcetype"><td>';
254 print $langs->trans(
"ForceMemberType");
256 $listofval = array();
257 $listofval += $adht->liste_array(1);
259 print $form->selectarray(
"MEMBER_NEWFORM_FORCETYPE", $listofval, $forcetype, $langs->trans(
"No"), 0, 0,
'', 0, 0, 0,
'',
'width200');
260 print
"</td></tr>\n";
264 "phy" => $langs->trans(
"Physical"),
265 "mor" => $langs->trans(
"Moral"),
267 print
'<tr class="oddeven drag" id="trforcenature"><td>';
268 print $langs->trans(
"ForceMemberNature");
272 print $form->selectarray(
"MEMBER_NEWFORM_FORCEMORPHY", $morphys, $forcenature, $langs->trans(
"No"), 0, 0,
'', 0, 0, 0,
'',
'width200');
273 print
"</td></tr>\n";
276 print
'<tr class="oddeven" id="tramount"><td>';
277 print $langs->trans(
"DefaultAmount");
279 print
'<input type="text" class="right width50" id="MEMBER_NEWFORM_AMOUNT" name="MEMBER_NEWFORM_AMOUNT" value="'.getDolGlobalString(
'MEMBER_NEWFORM_AMOUNT').
'">';
280 print
' <span class="opacitymedium">'.$langs->getCurrencySymbol(
$mysoc->currency_code).
'</span>';
281 print
"</td></tr>\n";
284 print
'<tr class="oddeven" id="tredit"><td>';
285 print $langs->trans(
"MinimumAmount");
287 print
'<input type="text" class="right width50" id="MEMBER_MIN_AMOUNT" name="MEMBER_MIN_AMOUNT" value="'.getDolGlobalString(
'MEMBER_MIN_AMOUNT').
'">';
288 print
' <span class="opacitymedium">'.$langs->getCurrencySymbol(
$mysoc->currency_code).
'</span>';
289 print
"</td></tr>\n";
292 print
'<tr class="oddeven" id="tredit"><td>';
293 print $langs->trans(
"MemberCountersArePublic");
295 print $form->selectyesno(
"MEMBER_COUNTERS_ARE_PUBLIC",
getDolGlobalInt(
'MEMBER_COUNTERS_ARE_PUBLIC'), 1,
false, 0, 1);
296 print
"</td></tr>\n";
299 print
'<tr class="oddeven" id="trpayment"><td>';
300 print $langs->trans(
"MEMBER_NEWFORM_PAYONLINE");
305 $validpaymentmethod = getValidOnlinePaymentMethods(
'', 1);
308 $listofval = array();
309 $listofval[
'-1'] = array(
'label' => $langs->trans(
'No'));
310 $listofval[
'all'] = array(
'label' => $langs->trans(
'Yes').
' ('.$langs->trans(
"VisitorCanChooseItsPaymentMode").
')',
'data-html' => $langs->trans(
'Yes').
' <span class="opacitymedium">('.$langs->trans(
"VisitorCanChooseItsPaymentMode").
')</span>');
311 foreach ($validpaymentmethod as $key => $val) {
312 if (is_array($val)) {
313 $listofval[$key] = $val;
315 $listofval[$key] = array(
'label' => $key,
'status' =>
'valid');
319 print $form->selectarray(
"MEMBER_NEWFORM_PAYONLINE", $listofval,
getDolGlobalString(
'MEMBER_NEWFORM_PAYONLINE'), 0);
320 print
"</td></tr>\n";
323 print
'<tr class="oddeven" id="trpayment"><td>';
324 print $form->textwithpicto($langs->trans(
"MEMBER_SEARCH_MEMBER_PUBLIC_FORM_CREATE"), $langs->trans(
"MEMBER_SEARCH_MEMBER_PUBLIC_FORM_CREATEDesc"));
326 print $form->selectyesno(
"MEMBER_SEARCH_MEMBER_PUBLIC_FORM_CREATE",
getDolGlobalInt(
"MEMBER_SEARCH_MEMBER_PUBLIC_FORM_CREATE"));
327 print
"</td></tr>\n";
332 print
'<div class="center">';
333 print
'<input type="submit" class="button button-edit" value="'.$langs->trans(
"Modify").
'">';
global $dolibarr_main_url_root
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.
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
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.
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, $allowothertags=array())
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, $morecssdiv='')
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.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='', $morecssonpicto='widthpictotitle')
Load a title with picto.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
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.