mirror of
https://github.com/YunoHost-Apps/dolibarr_ynh.git
synced 2024-09-03 18:35:53 +02:00
234 lines
8.8 KiB
PHP
234 lines
8.8 KiB
PHP
<?php
|
|
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2006-2015 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2006-2012 Regis Houssin <regis.houssin@capnetworks.com>
|
|
* Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/adherents/admin/public.php
|
|
* \ingroup member
|
|
* \brief File of main public page for member module
|
|
* \author Laurent Destailleur
|
|
*/
|
|
|
|
require '../../main.inc.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/member.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/adherents/class/adherent_type.class.php';
|
|
|
|
$langs->load("members");
|
|
$langs->load("admin");
|
|
|
|
$action=GETPOST('action', 'alpha');
|
|
|
|
if (! $user->admin) accessforbidden();
|
|
|
|
|
|
/*
|
|
* Actions
|
|
*/
|
|
|
|
if ($action == 'update')
|
|
{
|
|
$public=GETPOST('MEMBER_ENABLE_PUBLIC');
|
|
$amount=GETPOST('MEMBER_NEWFORM_AMOUNT');
|
|
$editamount=GETPOST('MEMBER_NEWFORM_EDITAMOUNT');
|
|
$payonline=GETPOST('MEMBER_NEWFORM_PAYONLINE');
|
|
$email=GETPOST('MEMBER_PAYONLINE_SENDEMAIL');
|
|
$forcetype=GETPOST('MEMBER_NEWFORM_FORCETYPE');
|
|
|
|
$res=dolibarr_set_const($db, "MEMBER_ENABLE_PUBLIC",$public,'chaine',0,'',$conf->entity);
|
|
$res=dolibarr_set_const($db, "MEMBER_NEWFORM_AMOUNT",$amount,'chaine',0,'',$conf->entity);
|
|
$res=dolibarr_set_const($db, "MEMBER_NEWFORM_EDITAMOUNT",$editamount,'chaine',0,'',$conf->entity);
|
|
$res=dolibarr_set_const($db, "MEMBER_NEWFORM_PAYONLINE",$payonline,'chaine',0,'',$conf->entity);
|
|
$res=dolibarr_set_const($db, "MEMBER_PAYONLINE_SENDEMAIL",$email,'chaine',0,'',$conf->entity);
|
|
if ($forcetype < 0) $res=dolibarr_del_const($db, "MEMBER_NEWFORM_FORCETYPE",$conf->entity);
|
|
else $res=dolibarr_set_const($db, "MEMBER_NEWFORM_FORCETYPE",$forcetype,'chaine',0,'',$conf->entity);
|
|
|
|
if (! $res > 0) $error++;
|
|
|
|
if (! $error)
|
|
{
|
|
setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
|
|
}
|
|
else
|
|
{
|
|
setEventMessages($langs->trans("Error"), null, 'errors');
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
$form=new Form($db);
|
|
|
|
$help_url='EN:Module_Foundations|FR:Module_Adhérents|ES:Módulo_Miembros';
|
|
llxHeader('',$langs->trans("MembersSetup"),$help_url);
|
|
|
|
|
|
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
|
|
print load_fiche_titre($langs->trans("MembersSetup"),$linkback,'title_setup');
|
|
|
|
$head = member_admin_prepare_head();
|
|
|
|
|
|
|
|
print '<form action="'.$_SERVER["PHP_SELF"].'" method="post">';
|
|
print '<input type="hidden" name="action" value="update">';
|
|
print '<input type="hidden" name="token" value="'.$_SESSION['newtoken'].'">';
|
|
|
|
dol_fiche_head($head, 'public', $langs->trans("Members"), -1, 'user');
|
|
|
|
if ($conf->use_javascript_ajax)
|
|
{
|
|
print "\n".'<script type="text/javascript" language="javascript">';
|
|
print 'jQuery(document).ready(function () {
|
|
function initemail()
|
|
{
|
|
if (jQuery("#MEMBER_NEWFORM_PAYONLINE").val()==\'-1\')
|
|
{
|
|
jQuery("#tremail").hide();
|
|
}
|
|
else
|
|
{
|
|
jQuery("#tremail").show();
|
|
}
|
|
}
|
|
function initfields()
|
|
{
|
|
if (jQuery("#MEMBER_ENABLE_PUBLIC").val()==\'0\')
|
|
{
|
|
jQuery("#trforcetype, #tramount, #tredit, #trpayment, #tremail").hide();
|
|
}
|
|
if (jQuery("#MEMBER_ENABLE_PUBLIC").val()==\'1\')
|
|
{
|
|
jQuery("#trforcetype, #tramount, #tredit, #trpayment").show();
|
|
if (jQuery("#MEMBER_NEWFORM_PAYONLINE").val()==\'-1\') jQuery("#tremail").hide();
|
|
else jQuery("#tremail").show();
|
|
}
|
|
}
|
|
initfields();
|
|
jQuery("#MEMBER_ENABLE_PUBLIC").change(function() { initfields(); });
|
|
jQuery("#MEMBER_NEWFORM_PAYONLINE").change(function() { initemail(); });
|
|
})';
|
|
print '</script>'."\n";
|
|
}
|
|
|
|
|
|
print $langs->trans("BlankSubscriptionFormDesc").'<br><br>';
|
|
|
|
|
|
print '<table class="noborder" width="100%">';
|
|
|
|
print '<tr class="liste_titre">';
|
|
print '<td>'.$langs->trans("Parameter").'</td>';
|
|
print '<td align="right">'.$langs->trans("Value").'</td>';
|
|
print "</tr>\n";
|
|
|
|
// Allow public form
|
|
print '<tr class="oddeven"><td>';
|
|
print $langs->trans("EnablePublicSubscriptionForm");
|
|
print '</td><td align="right">';
|
|
print $form->selectyesno("MEMBER_ENABLE_PUBLIC",(! empty($conf->global->MEMBER_ENABLE_PUBLIC)?$conf->global->MEMBER_ENABLE_PUBLIC:0),1);
|
|
print "</td></tr>\n";
|
|
|
|
// Force Type
|
|
$adht = new AdherentType($db);
|
|
print '<tr class="oddeven drag" id="trforcetype"><td>';
|
|
print $langs->trans("ForceMemberType");
|
|
print '</td><td width="60" align="right">';
|
|
$listofval = array(-1 => $langs->trans("Undefined"));
|
|
$listofval += $adht->liste_array();
|
|
$forcetype = $conf->global->MEMBER_NEWFORM_FORCETYPE ?: -1;
|
|
print $form->selectarray("MEMBER_NEWFORM_FORCETYPE", $listofval, $forcetype, count($listetype)>1?1:0);
|
|
print "</td></tr>\n";
|
|
|
|
// Amount
|
|
print '<tr class="oddeven" id="tramount"><td>';
|
|
print $langs->trans("DefaultAmount");
|
|
print '</td><td align="right">';
|
|
print '<input type="text" id="MEMBER_NEWFORM_AMOUNT" name="MEMBER_NEWFORM_AMOUNT" size="5" value="'.(! empty($conf->global->MEMBER_NEWFORM_AMOUNT)?$conf->global->MEMBER_NEWFORM_AMOUNT:'').'">';
|
|
print "</td></tr>\n";
|
|
|
|
// Can edit
|
|
print '<tr class="oddeven" id="tredit"><td>';
|
|
print $langs->trans("CanEditAmount");
|
|
print '</td><td align="right">';
|
|
print $form->selectyesno("MEMBER_NEWFORM_EDITAMOUNT",(! empty($conf->global->MEMBER_NEWFORM_EDITAMOUNT)?$conf->global->MEMBER_NEWFORM_EDITAMOUNT:0),1);
|
|
print "</td></tr>\n";
|
|
|
|
if (! empty($conf->paybox->enabled) || ! empty($conf->paypal->enabled) || ! empty($conf->stripe->enabled))
|
|
{
|
|
// Jump to an online payment page
|
|
print '<tr class="oddeven" id="trpayment"><td>';
|
|
print $langs->trans("MEMBER_NEWFORM_PAYONLINE");
|
|
print '</td><td align="right">';
|
|
$listofval=array();
|
|
if (! empty($conf->paybox->enabled)) $listofval['paybox']='Paybox';
|
|
if (! empty($conf->paypal->enabled)) $listofval['paypal']='PayPal';
|
|
if (! empty($conf->stripe->enabled)) $listofval['stripe']='Stripe';
|
|
print $form->selectarray("MEMBER_NEWFORM_PAYONLINE",$listofval,(! empty($conf->global->MEMBER_NEWFORM_PAYONLINE)?$conf->global->MEMBER_NEWFORM_PAYONLINE:''),1);
|
|
print "</td></tr>\n";
|
|
}
|
|
|
|
if (! empty($conf->paybox->enabled) || ! empty($conf->paypal->enabled) || ! empty($conf->stripe->enabled))
|
|
{
|
|
// Jump to an online payment page
|
|
print '<tr class="oddeven" id="tremail"><td>';
|
|
print $langs->trans("MEMBER_PAYONLINE_SENDEMAIL");
|
|
print '</td><td align="right">';
|
|
print '<input type="text" id="MEMBER_PAYONLINE_SENDEMAIL" name="MEMBER_PAYONLINE_SENDEMAIL" size="24" value="'.(! empty($conf->global->MEMBER_PAYONLINE_SENDEMAIL)?$conf->global->MEMBER_PAYONLINE_SENDEMAIL:'').'">';
|
|
print "</td></tr>\n";
|
|
}
|
|
|
|
print '</table>';
|
|
|
|
dol_fiche_end();
|
|
|
|
print '<center>';
|
|
print '<input type="submit" class="button" value="'.$langs->trans("Modify").'">';
|
|
print '</center>';
|
|
|
|
print '</form>';
|
|
|
|
|
|
|
|
print '<br>';
|
|
//print $langs->trans('FollowingLinksArePublic').'<br>';
|
|
print img_picto('','object_globe.png').' '.$langs->trans('BlankSubscriptionForm').':<br>';
|
|
if ($conf->multicompany->enabled) {
|
|
$entity_qr='?entity='.$conf->entity;
|
|
} else {
|
|
$entity_qr='';
|
|
}
|
|
print '<a target="_blank" href="'.DOL_URL_ROOT.'/public/members/new.php'.$entity_qr.'">'.DOL_MAIN_URL_ROOT.'/public/members/new.php'.$entity_qr.'</a>';
|
|
|
|
/*
|
|
print '<table class="border" cellspacing="0" cellpadding="3">';
|
|
print '<tr class="liste_titre"><td>'.$langs->trans("Description").'</td><td>'.$langs->trans("URL").'</td></tr>';
|
|
print '<tr><td>'.$langs->trans("BlankSubscriptionForm").'</td><td>'..'</td></tr>';
|
|
print '<tr><td>'.$langs->trans("PublicMemberList").'</td><td>'.img_picto('','object_globe.png').' '.'<a target="_blank" href="'.DOL_URL_ROOT.'/public/members/public_list.php'.'">'.DOL_MAIN_URL_ROOT.'/public/members/public_list.php'.'</a></td></tr>';
|
|
print '<tr><td>'.$langs->trans("PublicMemberCard").'</td><td>'.img_picto('','object_globe.png').' '.DOL_MAIN_URL_ROOT.'/public/members/public_card.php?id=xxx'.'</td></tr>';
|
|
print '</table>';
|
|
*/
|
|
|
|
llxFooter();
|
|
|
|
$db->close();
|