2004-10-19 20:58:50 +02:00
|
|
|
<?php
|
2007-12-26 11:09:30 +01:00
|
|
|
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
|
|
|
* Copyright (C) 2003 Jean-Louis Bergamo <jlb@j1b.org>
|
2012-01-11 18:43:38 +01:00
|
|
|
* Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
|
2007-12-26 11:09:30 +01:00
|
|
|
* Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
|
|
|
|
|
* Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
|
2018-10-27 14:43:12 +02:00
|
|
|
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
|
2012-03-29 10:54:48 +02:00
|
|
|
* Copyright (C) 2011-2012 Juanjo Menent <jmenent@2byte.es>
|
2012-08-26 22:33:27 +02:00
|
|
|
* Copyright (C) 2012 J. Fernando Lagrange <fernando@demo-tic.org>
|
2020-11-14 00:48:13 +01:00
|
|
|
* Copyright (C) 2015 Jean-François Ferry <jfefe@aternatik.fr>
|
2021-04-09 02:51:05 +02:00
|
|
|
* Copyright (C) 2020-2021 Frédéric France <frederic.france@netlogic.fr>
|
2003-08-12 18:44:18 +02:00
|
|
|
*
|
|
|
|
|
* 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
|
2013-01-16 15:36:08 +01:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2003-08-12 18:44:18 +02:00
|
|
|
* (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
|
2019-09-23 21:55:30 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2003-08-12 18:44:18 +02:00
|
|
|
*/
|
2004-08-29 14:01:58 +02:00
|
|
|
|
2005-08-11 20:51:38 +02:00
|
|
|
/**
|
2021-09-11 09:49:01 +02:00
|
|
|
* \file htdocs/adherents/admin/member.php
|
2010-07-21 13:57:52 +02:00
|
|
|
* \ingroup member
|
2010-06-24 20:51:37 +02:00
|
|
|
* \brief Page to setup the module Foundation
|
2009-04-02 02:34:32 +02:00
|
|
|
*/
|
2004-08-29 14:01:58 +02:00
|
|
|
|
2012-08-22 23:24:21 +02:00
|
|
|
require '../../main.inc.php';
|
2012-08-22 23:11:24 +02:00
|
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
|
|
|
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/member.lib.php';
|
2003-08-12 18:44:18 +02:00
|
|
|
|
2018-09-07 10:40:36 +02:00
|
|
|
// Load translation files required by the page
|
2020-04-10 10:59:32 +02:00
|
|
|
$langs->loadLangs(array("admin", "members"));
|
2004-08-29 14:01:58 +02:00
|
|
|
|
2021-03-01 00:19:52 +01:00
|
|
|
if (!$user->admin) {
|
|
|
|
|
accessforbidden();
|
|
|
|
|
}
|
2004-08-29 14:01:58 +02:00
|
|
|
|
2003-08-12 18:44:18 +02:00
|
|
|
|
2020-11-14 00:48:13 +01:00
|
|
|
$choices = array('yesno', 'texte', 'chaine');
|
|
|
|
|
|
|
|
|
|
$value = GETPOST('value', 'alpha');
|
|
|
|
|
$label = GETPOST('label', 'alpha');
|
|
|
|
|
$scandir = GETPOST('scandir', 'alpha');
|
|
|
|
|
$type = 'member';
|
2003-08-28 17:41:56 +02:00
|
|
|
|
2020-09-16 19:39:50 +02:00
|
|
|
$action = GETPOST('action', 'aZ09');
|
2011-09-02 15:15:39 +02:00
|
|
|
|
2004-11-12 15:37:38 +01:00
|
|
|
|
2012-01-11 18:43:38 +01:00
|
|
|
/*
|
|
|
|
|
* Actions
|
|
|
|
|
*/
|
|
|
|
|
|
2020-11-14 00:48:13 +01:00
|
|
|
include DOL_DOCUMENT_ROOT.'/core/actions_setmoduleoptions.inc.php';
|
|
|
|
|
|
|
|
|
|
if ($action == 'set_default') {
|
|
|
|
|
$ret = addDocumentModel($value, $type, $label, $scandir);
|
|
|
|
|
$res = true;
|
|
|
|
|
} elseif ($action == 'del_default') {
|
|
|
|
|
$ret = delDocumentModel($value, $type);
|
|
|
|
|
if ($ret > 0) {
|
2022-05-16 13:05:17 +02:00
|
|
|
if (getDolGlobalString('MEMBER_ADDON_PDF_ODT') == "$value") {
|
2020-11-14 00:48:13 +01:00
|
|
|
dolibarr_del_const($db, 'MEMBER_ADDON_PDF_ODT', $conf->entity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$res = true;
|
|
|
|
|
} elseif ($action == 'setdoc') {
|
|
|
|
|
// Set default model
|
|
|
|
|
if (dolibarr_set_const($db, "MEMBER_ADDON_PDF_ODT", $value, 'chaine', 0, '', $conf->entity)) {
|
2021-05-09 16:46:38 +02:00
|
|
|
// The constant that was read ahead of the new set
|
|
|
|
|
// we therefore go through a variable to have a consistent display
|
2020-11-14 00:48:13 +01:00
|
|
|
$conf->global->MEMBER_ADDON_PDF_ODT = $value;
|
|
|
|
|
}
|
|
|
|
|
|
2021-05-09 16:46:38 +02:00
|
|
|
// We activate the model
|
2020-11-14 00:48:13 +01:00
|
|
|
$ret = delDocumentModel($value, $type);
|
|
|
|
|
if ($ret > 0) {
|
|
|
|
|
$ret = addDocumentModel($value, $type, $label, $scandir);
|
|
|
|
|
}
|
|
|
|
|
$res = true;
|
|
|
|
|
} elseif (preg_match('/set_([a-z0-9_\-]+)/i', $action, $reg)) {
|
|
|
|
|
$code = $reg[1];
|
|
|
|
|
if (dolibarr_set_const($db, $code, 1, 'chaine', 0, '', $conf->entity) > 0) {
|
|
|
|
|
header("Location: ".$_SERVER["PHP_SELF"]);
|
|
|
|
|
exit;
|
|
|
|
|
} else {
|
|
|
|
|
dol_print_error($db);
|
|
|
|
|
}
|
|
|
|
|
} elseif (preg_match('/del_([a-z0-9_\-]+)/i', $action, $reg)) {
|
|
|
|
|
$code = $reg[1];
|
|
|
|
|
if (dolibarr_del_const($db, $code, $conf->entity) > 0) {
|
|
|
|
|
header("Location: ".$_SERVER["PHP_SELF"]);
|
|
|
|
|
exit;
|
|
|
|
|
} else {
|
|
|
|
|
dol_print_error($db);
|
|
|
|
|
}
|
|
|
|
|
} elseif ($action == 'updateall') {
|
2020-10-31 14:32:18 +01:00
|
|
|
$db->begin();
|
2021-04-09 02:23:22 +02:00
|
|
|
$res1 = $res2 = $res3 = $res4 = $res5 = $res6 = $res7 = 0;
|
2020-10-31 14:32:18 +01:00
|
|
|
$res1 = dolibarr_set_const($db, 'ADHERENT_LOGIN_NOT_REQUIRED', GETPOST('ADHERENT_LOGIN_NOT_REQUIRED', 'alpha') ? 0 : 1, 'chaine', 0, '', $conf->entity);
|
|
|
|
|
$res2 = dolibarr_set_const($db, 'ADHERENT_MAIL_REQUIRED', GETPOST('ADHERENT_MAIL_REQUIRED', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
|
|
|
$res3 = dolibarr_set_const($db, 'ADHERENT_DEFAULT_SENDINFOBYMAIL', GETPOST('ADHERENT_DEFAULT_SENDINFOBYMAIL', 'alpha'), 'chaine', 0, '', $conf->entity);
|
2021-04-19 14:19:32 +02:00
|
|
|
$res3 = dolibarr_set_const($db, 'ADHERENT_CREATE_EXTERNAL_USER_LOGIN', GETPOST('ADHERENT_CREATE_EXTERNAL_USER_LOGIN', 'alpha'), 'chaine', 0, '', $conf->entity);
|
2020-10-31 14:32:18 +01:00
|
|
|
$res4 = dolibarr_set_const($db, 'ADHERENT_BANK_USE', GETPOST('ADHERENT_BANK_USE', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
|
|
|
// Use vat for invoice creation
|
2022-06-11 09:46:28 +02:00
|
|
|
if (isModEnabled('facture')) {
|
2020-10-31 14:32:18 +01:00
|
|
|
$res4 = dolibarr_set_const($db, 'ADHERENT_VAT_FOR_SUBSCRIPTIONS', GETPOST('ADHERENT_VAT_FOR_SUBSCRIPTIONS', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
|
|
|
$res5 = dolibarr_set_const($db, 'ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS', GETPOST('ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
|
|
|
if (!empty($conf->product->enabled) || !empty($conf->service->enabled)) {
|
|
|
|
|
$res6 = dolibarr_set_const($db, 'ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS', GETPOST('ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS', 'alpha'), 'chaine', 0, '', $conf->entity);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ($res1 < 0 || $res2 < 0 || $res3 < 0 || $res4 < 0 || $res5 < 0 || $res6 < 0) {
|
|
|
|
|
setEventMessages('ErrorFailedToSaveDate', null, 'errors');
|
|
|
|
|
$db->rollback();
|
|
|
|
|
} else {
|
|
|
|
|
setEventMessages('RecordModifiedSuccessfully', null, 'mesgs');
|
|
|
|
|
$db->commit();
|
|
|
|
|
}
|
2017-05-13 13:02:55 +02:00
|
|
|
}
|
|
|
|
|
|
2019-09-19 22:33:26 +02:00
|
|
|
// Action to update or add a constant
|
2020-05-21 09:12:18 +02:00
|
|
|
if ($action == 'update' || $action == 'add') {
|
2020-04-10 10:59:32 +02:00
|
|
|
$constname = GETPOST('constname', 'alpha');
|
|
|
|
|
$constvalue = (GETPOST('constvalue_'.$constname) ? GETPOST('constvalue_'.$constname) : GETPOST('constvalue'));
|
2012-01-08 16:58:55 +01:00
|
|
|
|
2021-03-01 00:19:52 +01:00
|
|
|
if (($constname == 'ADHERENT_CARD_TYPE' || $constname == 'ADHERENT_ETIQUETTE_TYPE' || $constname == 'ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS') && $constvalue == -1) {
|
|
|
|
|
$constvalue = '';
|
|
|
|
|
}
|
2020-05-21 09:12:18 +02:00
|
|
|
if ($constname == 'ADHERENT_LOGIN_NOT_REQUIRED') { // Invert choice
|
2021-03-01 00:19:52 +01:00
|
|
|
if ($constvalue) {
|
|
|
|
|
$constvalue = 0;
|
|
|
|
|
} else {
|
|
|
|
|
$constvalue = 1;
|
|
|
|
|
}
|
2011-11-06 11:11:43 +01:00
|
|
|
}
|
2012-01-08 16:58:55 +01:00
|
|
|
|
2020-04-10 10:59:32 +02:00
|
|
|
$consttype = GETPOST('consttype', 'alpha');
|
|
|
|
|
$constnote = GETPOST('constnote');
|
2020-11-14 00:48:13 +01:00
|
|
|
$res = dolibarr_set_const($db, $constname, $constvalue, $choices[$consttype], 0, $constnote, $conf->entity);
|
2012-01-08 16:58:55 +01:00
|
|
|
|
2021-03-01 00:19:52 +01:00
|
|
|
if (!($res > 0)) {
|
|
|
|
|
$error++;
|
|
|
|
|
}
|
2012-01-08 16:58:55 +01:00
|
|
|
|
2020-05-21 09:12:18 +02:00
|
|
|
if (!$error) {
|
2015-10-23 12:58:30 +02:00
|
|
|
setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
|
2020-05-21 00:47:16 +02:00
|
|
|
} else {
|
2015-10-23 12:58:30 +02:00
|
|
|
setEventMessages($langs->trans("Error"), null, 'errors');
|
2011-11-06 11:11:43 +01:00
|
|
|
}
|
2003-08-28 17:41:56 +02:00
|
|
|
}
|
2003-08-12 18:44:18 +02:00
|
|
|
|
2019-09-19 22:33:26 +02:00
|
|
|
// Action to enable of a submodule of the adherent module
|
2020-05-21 09:12:18 +02:00
|
|
|
if ($action == 'set') {
|
2020-10-31 14:32:18 +01:00
|
|
|
$result = dolibarr_set_const($db, GETPOST('name', 'alpha'), GETPOST('value'), '', 0, '', $conf->entity);
|
|
|
|
|
if ($result < 0) {
|
|
|
|
|
print $db->error();
|
|
|
|
|
}
|
2003-08-12 18:44:18 +02:00
|
|
|
}
|
|
|
|
|
|
2019-09-19 22:33:26 +02:00
|
|
|
// Action to disable a submodule of the adherent module
|
2020-05-21 09:12:18 +02:00
|
|
|
if ($action == 'unset') {
|
2020-10-31 14:32:18 +01:00
|
|
|
$result = dolibarr_del_const($db, GETPOST('name', 'alpha'), $conf->entity);
|
|
|
|
|
if ($result < 0) {
|
|
|
|
|
print $db->error();
|
|
|
|
|
}
|
2003-08-12 18:44:18 +02:00
|
|
|
}
|
|
|
|
|
|
2007-10-04 20:29:29 +02:00
|
|
|
|
2010-02-11 23:48:10 +01:00
|
|
|
|
2009-04-02 02:34:32 +02:00
|
|
|
/*
|
|
|
|
|
* View
|
|
|
|
|
*/
|
2007-10-07 16:45:42 +02:00
|
|
|
|
2013-09-06 12:10:09 +02:00
|
|
|
$form = new Form($db);
|
|
|
|
|
|
2021-03-15 15:46:43 +01:00
|
|
|
$help_url = 'EN:Module_Foundations|FR:Module_Adhérents|ES:Módulo_Miembros|DE:Modul_Mitglieder';
|
2003-08-12 18:44:18 +02:00
|
|
|
|
2019-01-27 11:55:16 +01:00
|
|
|
llxHeader('', $langs->trans("MembersSetup"), $help_url);
|
2009-04-02 02:34:32 +02:00
|
|
|
|
2003-08-12 18:44:18 +02:00
|
|
|
|
2020-04-10 10:59:32 +02:00
|
|
|
$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
|
2019-01-27 11:55:16 +01:00
|
|
|
print load_fiche_titre($langs->trans("MembersSetup"), $linkback, 'title_setup');
|
2011-06-22 17:43:14 +02:00
|
|
|
|
|
|
|
|
|
2012-09-13 11:52:50 +02:00
|
|
|
$head = member_admin_prepare_head();
|
2011-06-22 17:43:14 +02:00
|
|
|
|
2020-10-22 22:50:03 +02:00
|
|
|
print dol_get_fiche_head($head, 'general', $langs->trans("Members"), -1, 'user');
|
2017-05-13 13:02:55 +02:00
|
|
|
|
|
|
|
|
print '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
|
2019-12-18 23:12:31 +01:00
|
|
|
print '<input type="hidden" name="token" value="'.newToken().'">';
|
2017-05-13 13:02:55 +02:00
|
|
|
print '<input type="hidden" name="action" value="updateall">';
|
2003-08-12 18:44:18 +02:00
|
|
|
|
2022-02-18 13:46:12 +01:00
|
|
|
|
|
|
|
|
// Mains options
|
|
|
|
|
|
2019-01-27 11:55:16 +01:00
|
|
|
print load_fiche_titre($langs->trans("MemberMainOptions"), '', '');
|
2021-05-24 19:05:25 +02:00
|
|
|
|
|
|
|
|
print '<div class="div-table-responsive-no-min">';
|
2019-11-05 21:24:41 +01:00
|
|
|
print '<table class="noborder centpercent">';
|
2005-08-11 20:51:38 +02:00
|
|
|
print '<tr class="liste_titre">';
|
|
|
|
|
print '<td>'.$langs->trans("Description").'</td>';
|
|
|
|
|
print '<td>'.$langs->trans("Value").'</td>';
|
|
|
|
|
print "</tr>\n";
|
|
|
|
|
|
2008-11-15 01:44:19 +01:00
|
|
|
// Mail required for members
|
2017-04-12 10:28:05 +02:00
|
|
|
print '<tr class="oddeven"><td>'.$langs->trans("AdherentMailRequired").'</td><td>';
|
2020-04-10 10:59:32 +02:00
|
|
|
print $form->selectyesno('ADHERENT_MAIL_REQUIRED', (!empty($conf->global->ADHERENT_MAIL_REQUIRED) ? $conf->global->ADHERENT_MAIL_REQUIRED : 0), 1);
|
2005-08-11 20:51:38 +02:00
|
|
|
print "</td></tr>\n";
|
|
|
|
|
|
2021-09-01 19:06:58 +02:00
|
|
|
// Login/Pass required for members
|
|
|
|
|
print '<tr class="oddeven"><td>'.$langs->trans("AdherentLoginRequired").'</td><td>';
|
|
|
|
|
print $form->selectyesno('ADHERENT_LOGIN_NOT_REQUIRED', (!empty($conf->global->ADHERENT_LOGIN_NOT_REQUIRED) ? 0 : 1), 1);
|
|
|
|
|
print "</td></tr>\n";
|
|
|
|
|
|
2008-11-15 01:44:19 +01:00
|
|
|
// Send mail information is on by default
|
2017-04-12 10:28:05 +02:00
|
|
|
print '<tr class="oddeven"><td>'.$langs->trans("MemberSendInformationByMailByDefault").'</td><td>';
|
2020-04-10 10:59:32 +02:00
|
|
|
print $form->selectyesno('ADHERENT_DEFAULT_SENDINFOBYMAIL', (!empty($conf->global->ADHERENT_DEFAULT_SENDINFOBYMAIL) ? $conf->global->ADHERENT_DEFAULT_SENDINFOBYMAIL : 0), 1);
|
2008-11-15 01:44:19 +01:00
|
|
|
print "</td></tr>\n";
|
|
|
|
|
|
2021-04-19 14:19:32 +02:00
|
|
|
// Create an external user login for each new member subscription validated
|
|
|
|
|
print '<tr class="oddeven"><td>'.$langs->trans("MemberCreateAnExternalUserForSubscriptionValidated").'</td><td>';
|
|
|
|
|
print $form->selectyesno('ADHERENT_CREATE_EXTERNAL_USER_LOGIN', (!empty($conf->global->ADHERENT_CREATE_EXTERNAL_USER_LOGIN) ? $conf->global->ADHERENT_CREATE_EXTERNAL_USER_LOGIN : 0), 1);
|
|
|
|
|
print "</td></tr>\n";
|
|
|
|
|
|
2021-08-25 09:01:30 +02:00
|
|
|
// Allow members to change type on renewal forms
|
2021-08-28 18:21:23 +02:00
|
|
|
/* To test during next beta
|
2021-08-25 09:01:30 +02:00
|
|
|
print '<tr class="oddeven"><td>'.$langs->trans("MemberAllowchangeOfType").'</td><td>';
|
2021-10-19 23:00:36 +02:00
|
|
|
print $form->selectyesno('MEMBER_ALLOW_CHANGE_OF_TYPE', (!empty($conf->global->MEMBER_ALLOW_CHANGE_OF_TYPE) ? 0 : 1), 1);
|
2021-08-25 09:01:30 +02:00
|
|
|
print "</td></tr>\n";
|
2021-08-28 18:21:23 +02:00
|
|
|
*/
|
2021-08-25 09:01:30 +02:00
|
|
|
|
2013-03-06 17:16:26 +01:00
|
|
|
// Insert subscription into bank account
|
2017-04-12 10:28:05 +02:00
|
|
|
print '<tr class="oddeven"><td>'.$langs->trans("MoreActionsOnSubscription").'</td>';
|
2020-04-10 10:59:32 +02:00
|
|
|
$arraychoices = array('0'=>$langs->trans("None"));
|
2021-03-01 00:19:52 +01:00
|
|
|
if (!empty($conf->banque->enabled)) {
|
|
|
|
|
$arraychoices['bankdirect'] = $langs->trans("MoreActionBankDirect");
|
|
|
|
|
}
|
2022-06-11 09:46:28 +02:00
|
|
|
if (!empty($conf->banque->enabled) && !empty($conf->societe->enabled) && isModEnabled('facture')) {
|
2021-03-01 00:19:52 +01:00
|
|
|
$arraychoices['invoiceonly'] = $langs->trans("MoreActionInvoiceOnly");
|
|
|
|
|
}
|
2022-06-11 09:46:28 +02:00
|
|
|
if (!empty($conf->banque->enabled) && !empty($conf->societe->enabled) && isModEnabled('facture')) {
|
2021-03-01 00:19:52 +01:00
|
|
|
$arraychoices['bankviainvoice'] = $langs->trans("MoreActionBankViaInvoice");
|
|
|
|
|
}
|
2013-03-06 17:16:26 +01:00
|
|
|
print '<td>';
|
2022-05-18 12:31:09 +02:00
|
|
|
print $form->selectarray('ADHERENT_BANK_USE', $arraychoices, getDolGlobalString('ADHERENT_BANK_USE'), 0);
|
|
|
|
|
if (getDolGlobalString('ADHERENT_BANK_USE') == 'bankdirect' || getDolGlobalString('ADHERENT_BANK_USE') == 'bankviainvoice') {
|
2020-10-31 14:32:18 +01:00
|
|
|
print '<br><div style="padding-top: 5px;"><span class="opacitymedium">'.$langs->trans("ABankAccountMustBeDefinedOnPaymentModeSetup").'</span></div>';
|
2019-03-08 11:31:12 +01:00
|
|
|
}
|
2013-03-06 17:16:26 +01:00
|
|
|
print '</td>';
|
|
|
|
|
print "</tr>\n";
|
|
|
|
|
|
2013-03-30 14:27:13 +01:00
|
|
|
// Use vat for invoice creation
|
2022-06-11 09:46:28 +02:00
|
|
|
if (isModEnabled('facture')) {
|
2017-04-12 10:28:05 +02:00
|
|
|
print '<tr class="oddeven"><td>'.$langs->trans("VATToUseForSubscriptions").'</td>';
|
2020-05-21 09:12:18 +02:00
|
|
|
if (!empty($conf->banque->enabled)) {
|
2013-03-30 14:27:13 +01:00
|
|
|
print '<td>';
|
2020-04-10 10:59:32 +02:00
|
|
|
print $form->selectarray('ADHERENT_VAT_FOR_SUBSCRIPTIONS', array('0'=>$langs->trans("NoVatOnSubscription"), 'defaultforfoundationcountry'=>$langs->trans("Default")), (empty($conf->global->ADHERENT_VAT_FOR_SUBSCRIPTIONS) ? '0' : $conf->global->ADHERENT_VAT_FOR_SUBSCRIPTIONS), 0);
|
2013-03-30 14:27:13 +01:00
|
|
|
print '</td>';
|
2020-05-21 00:47:16 +02:00
|
|
|
} else {
|
2019-01-21 22:02:11 +01:00
|
|
|
print '<td class="right">';
|
2019-01-27 11:55:16 +01:00
|
|
|
print $langs->trans("WarningModuleNotActive", $langs->transnoentities("Module85Name"));
|
2013-03-30 14:27:13 +01:00
|
|
|
print '</td>';
|
|
|
|
|
}
|
|
|
|
|
print "</tr>\n";
|
2017-09-12 11:17:23 +02:00
|
|
|
|
2020-05-21 09:12:18 +02:00
|
|
|
if (!empty($conf->product->enabled) || !empty($conf->service->enabled)) {
|
2017-04-12 10:28:05 +02:00
|
|
|
print '<tr class="oddeven"><td>'.$langs->trans("ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS").'</td>';
|
2014-12-01 13:26:05 +01:00
|
|
|
print '<td>';
|
2021-03-17 23:45:48 +01:00
|
|
|
$selected = (empty($conf->global->ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS) ? '' : $conf->global->ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS);
|
2021-07-04 21:02:02 +02:00
|
|
|
print img_picto('', 'product', 'class="pictofixedwidth"');
|
2021-03-17 23:45:48 +01:00
|
|
|
$form->select_produits($selected, 'ADHERENT_PRODUCT_ID_FOR_SUBSCRIPTIONS', '', 0);
|
2014-12-01 13:26:05 +01:00
|
|
|
print '</td>';
|
|
|
|
|
}
|
|
|
|
|
print "</tr>\n";
|
2007-05-26 17:05:49 +02:00
|
|
|
}
|
2013-03-06 17:16:26 +01:00
|
|
|
|
2005-08-11 20:51:38 +02:00
|
|
|
print '</table>';
|
2021-05-24 19:05:25 +02:00
|
|
|
print '</div>';
|
2017-05-13 13:02:55 +02:00
|
|
|
|
2019-09-19 22:33:26 +02:00
|
|
|
print '<div class="center">';
|
2017-05-13 13:02:55 +02:00
|
|
|
print '<input type="submit" class="button" value="'.$langs->trans("Update").'" name="Button">';
|
2019-09-19 22:33:26 +02:00
|
|
|
print '</div>';
|
2017-05-13 13:02:55 +02:00
|
|
|
|
|
|
|
|
print '</form>';
|
|
|
|
|
|
2010-02-07 05:31:19 +01:00
|
|
|
|
2011-06-22 17:43:14 +02:00
|
|
|
print '<br>';
|
2010-02-07 05:31:19 +01:00
|
|
|
|
2010-02-13 23:20:32 +01:00
|
|
|
|
2020-11-14 00:48:13 +01:00
|
|
|
$dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
|
|
|
|
|
|
2021-05-09 16:46:38 +02:00
|
|
|
// Defined model definition table
|
2020-11-14 00:48:13 +01:00
|
|
|
$def = array();
|
2022-02-18 13:46:12 +01:00
|
|
|
$sql = "SELECT nom as name";
|
2020-11-14 00:48:13 +01:00
|
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."document_model";
|
|
|
|
|
$sql .= " WHERE type = '".$db->escape($type)."'";
|
|
|
|
|
$sql .= " AND entity = ".$conf->entity;
|
|
|
|
|
$resql = $db->query($sql);
|
|
|
|
|
if ($resql) {
|
|
|
|
|
$i = 0;
|
|
|
|
|
$num_rows = $db->num_rows($resql);
|
|
|
|
|
while ($i < $num_rows) {
|
2022-02-18 13:46:12 +01:00
|
|
|
$obj = $db->fetch_object($resql);
|
|
|
|
|
array_push($def, $obj->name);
|
2020-11-14 00:48:13 +01:00
|
|
|
$i++;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
dol_print_error($db);
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-18 13:46:12 +01:00
|
|
|
|
2020-11-14 00:48:13 +01:00
|
|
|
print load_fiche_titre($langs->trans("MembersDocModules"), '', '');
|
|
|
|
|
|
2021-05-24 19:05:25 +02:00
|
|
|
print '<div class="div-table-responsive-no-min">';
|
2020-11-14 00:48:13 +01:00
|
|
|
print '<table class="noborder centpercent">';
|
|
|
|
|
print '<tr class="liste_titre">';
|
|
|
|
|
print '<td>'.$langs->trans("Name").'</td>';
|
|
|
|
|
print '<td>'.$langs->trans("Description").'</td>';
|
|
|
|
|
print '<td align="center" width="60">'.$langs->trans("Status")."</td>\n";
|
|
|
|
|
print '<td align="center" width="60">'.$langs->trans("Default")."</td>\n";
|
|
|
|
|
print '<td align="center" width="80">'.$langs->trans("ShortInfo").'</td>';
|
|
|
|
|
print '<td align="center" width="80">'.$langs->trans("Preview").'</td>';
|
|
|
|
|
print "</tr>\n";
|
|
|
|
|
|
|
|
|
|
clearstatcache();
|
|
|
|
|
|
|
|
|
|
foreach ($dirmodels as $reldir) {
|
|
|
|
|
foreach (array('', '/doc') as $valdir) {
|
|
|
|
|
$dir = dol_buildpath($reldir."core/modules/member".$valdir);
|
|
|
|
|
if (is_dir($dir)) {
|
|
|
|
|
$handle = opendir($dir);
|
|
|
|
|
if (is_resource($handle)) {
|
|
|
|
|
while (($file = readdir($handle)) !== false) {
|
|
|
|
|
$filelist[] = $file;
|
|
|
|
|
}
|
|
|
|
|
closedir($handle);
|
|
|
|
|
arsort($filelist);
|
|
|
|
|
foreach ($filelist as $file) {
|
|
|
|
|
if (preg_match('/\.class\.php$/i', $file) && preg_match('/^(pdf_|doc_)/', $file)) {
|
|
|
|
|
if (file_exists($dir.'/'.$file)) {
|
|
|
|
|
$name = substr($file, 4, dol_strlen($file) - 14);
|
|
|
|
|
$classname = substr($file, 0, dol_strlen($file) - 10);
|
|
|
|
|
|
|
|
|
|
require_once $dir.'/'.$file;
|
|
|
|
|
$module = new $classname($db);
|
|
|
|
|
|
|
|
|
|
$modulequalified = 1;
|
2021-03-01 00:19:52 +01:00
|
|
|
if ($module->version == 'development' && $conf->global->MAIN_FEATURES_LEVEL < 2) {
|
|
|
|
|
$modulequalified = 0;
|
|
|
|
|
}
|
2020-11-14 00:48:13 +01:00
|
|
|
if ($module->version == 'experimental' && $conf->global->MAIN_FEATURES_LEVEL < 1) {
|
|
|
|
|
$modulequalified = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if ($modulequalified) {
|
|
|
|
|
print '<tr class="oddeven"><td width="100">';
|
|
|
|
|
print (empty($module->name) ? $name : $module->name);
|
|
|
|
|
print "</td><td>\n";
|
|
|
|
|
if (method_exists($module, 'info')) {
|
|
|
|
|
print $module->info($langs);
|
|
|
|
|
} else {
|
|
|
|
|
print $module->description;
|
|
|
|
|
}
|
|
|
|
|
print '</td>';
|
|
|
|
|
|
|
|
|
|
// Active
|
|
|
|
|
if (in_array($name, $def)) {
|
|
|
|
|
print '<td class="center">'."\n";
|
2021-09-19 14:41:46 +02:00
|
|
|
print '<a href="'.$_SERVER["PHP_SELF"].'?action=del_default&token='.newToken().'&value='.$name.'">';
|
2020-11-14 00:48:13 +01:00
|
|
|
print img_picto($langs->trans("Enabled"), 'switch_on');
|
|
|
|
|
print '</a>';
|
|
|
|
|
print '</td>';
|
|
|
|
|
} else {
|
|
|
|
|
print '<td class="center">'."\n";
|
2022-05-18 12:31:09 +02:00
|
|
|
print '<a href="'.$_SERVER["PHP_SELF"].'?action=set_default&token='.newToken().'&value='.$name.'&scandir='.(!empty($module->scandir) ? $module->scandir : '').'&label='.urlencode($module->name).'">'.img_picto($langs->trans("Disabled"), 'switch_off').'</a>';
|
2020-11-14 00:48:13 +01:00
|
|
|
print "</td>";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Defaut
|
|
|
|
|
print '<td class="center">';
|
2022-05-18 12:31:09 +02:00
|
|
|
if (getDolGlobalString('MEMBER_ADDON_PDF') == $name) {
|
2020-11-14 00:48:13 +01:00
|
|
|
print img_picto($langs->trans("Default"), 'on');
|
|
|
|
|
} else {
|
2022-05-18 12:31:09 +02:00
|
|
|
print '<a href="'.$_SERVER["PHP_SELF"].'?action=setdoc&token='.newToken().'&value='.$name.'&scandir='.(!empty($module->scandir) ? $module->scandir : '').'&label='.urlencode($module->name).'" alt="'.$langs->trans("Default").'">'.img_picto($langs->trans("Disabled"), 'off').'</a>';
|
2020-11-14 00:48:13 +01:00
|
|
|
}
|
|
|
|
|
print '</td>';
|
|
|
|
|
|
|
|
|
|
// Info
|
|
|
|
|
$htmltooltip = ''.$langs->trans("Name").': '.$module->name;
|
|
|
|
|
$htmltooltip .= '<br>'.$langs->trans("Type").': '.($module->type ? $module->type : $langs->trans("Unknown"));
|
|
|
|
|
if ($module->type == 'pdf') {
|
|
|
|
|
$htmltooltip .= '<br>'.$langs->trans("Width").'/'.$langs->trans("Height").': '.$module->page_largeur.'/'.$module->page_hauteur;
|
|
|
|
|
}
|
|
|
|
|
$htmltooltip .= '<br><br><u>'.$langs->trans("FeaturesSupported").':</u>';
|
2022-05-18 12:31:09 +02:00
|
|
|
$htmltooltip .= '<br>'.$langs->trans("Logo").': '.yn(!empty($module->option_logo) ? $module->option_logo : 0, 1, 1);
|
|
|
|
|
$htmltooltip .= '<br>'.$langs->trans("MultiLanguage").': '.yn(!empty($module->option_multilang) ? $module->option_multilang : 0, 1, 1);
|
2020-11-14 00:48:13 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
print '<td class="center">';
|
|
|
|
|
print $form->textwithpicto('', $htmltooltip, 1, 0);
|
|
|
|
|
print '</td>';
|
|
|
|
|
|
|
|
|
|
// Preview
|
|
|
|
|
print '<td class="center">';
|
2021-03-01 00:19:52 +01:00
|
|
|
if ($module->type == 'pdf') {
|
2020-11-14 00:48:13 +01:00
|
|
|
print '<a href="'.$_SERVER["PHP_SELF"].'?action=specimen&module='.$name.'">'.img_object($langs->trans("Preview"), 'contract').'</a>';
|
|
|
|
|
} else {
|
|
|
|
|
print img_object($langs->trans("PreviewNotAvailable"), 'generic');
|
|
|
|
|
}
|
|
|
|
|
print '</td>';
|
|
|
|
|
|
|
|
|
|
print "</tr>\n";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
print '</table>';
|
2021-05-24 19:05:25 +02:00
|
|
|
print '</div>';
|
|
|
|
|
|
2022-02-18 13:46:12 +01:00
|
|
|
|
2022-02-18 14:14:34 +01:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
TODO Use a global form instead of embeded form into table
|
|
|
|
|
print '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
|
|
|
|
|
print '<input type="hidden" name="token" value="'.newToken().'">';
|
|
|
|
|
print '<input type="hidden" name="action" value="updateall">';
|
|
|
|
|
*/
|
|
|
|
|
|
2022-02-18 13:46:12 +01:00
|
|
|
/*
|
|
|
|
|
* Edit info of model document
|
|
|
|
|
*/
|
|
|
|
|
$constantes = array(
|
|
|
|
|
'ADHERENT_CARD_TYPE',
|
|
|
|
|
//'ADHERENT_CARD_BACKGROUND',
|
|
|
|
|
'ADHERENT_CARD_HEADER_TEXT',
|
|
|
|
|
'ADHERENT_CARD_TEXT',
|
|
|
|
|
'ADHERENT_CARD_TEXT_RIGHT',
|
|
|
|
|
'ADHERENT_CARD_FOOTER_TEXT'
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
print load_fiche_titre($langs->trans("MembersCards"), '', '');
|
|
|
|
|
|
|
|
|
|
$helptext = '*'.$langs->trans("FollowingConstantsWillBeSubstituted").'<br>';
|
|
|
|
|
$helptext .= '__DOL_MAIN_URL_ROOT__, __ID__, __FIRSTNAME__, __LASTNAME__, __FULLNAME__, __LOGIN__, __PASSWORD__, ';
|
|
|
|
|
$helptext .= '__COMPANY__, __ADDRESS__, __ZIP__, __TOWN__, __COUNTRY__, __EMAIL__, __BIRTH__, __PHOTO__, __TYPE__, ';
|
|
|
|
|
$helptext .= '__YEAR__, __MONTH__, __DAY__';
|
|
|
|
|
|
|
|
|
|
form_constantes($constantes, 0, $helptext);
|
|
|
|
|
|
|
|
|
|
print '<br>';
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Edit info of model document
|
|
|
|
|
*/
|
|
|
|
|
$constantes = array('ADHERENT_ETIQUETTE_TYPE', 'ADHERENT_ETIQUETTE_TEXT');
|
|
|
|
|
|
|
|
|
|
print load_fiche_titre($langs->trans("MembersTickets"), '', '');
|
|
|
|
|
|
|
|
|
|
$helptext = '*'.$langs->trans("FollowingConstantsWillBeSubstituted").'<br>';
|
|
|
|
|
$helptext .= '__DOL_MAIN_URL_ROOT__, __ID__, __FIRSTNAME__, __LASTNAME__, __FULLNAME__, __LOGIN__, __PASSWORD__, ';
|
|
|
|
|
$helptext .= '__COMPANY__, __ADDRESS__, __ZIP__, __TOWN__, __COUNTRY__, __EMAIL__, __BIRTH__, __PHOTO__, __TYPE__, ';
|
|
|
|
|
$helptext .= '__YEAR__, __MONTH__, __DAY__';
|
|
|
|
|
|
|
|
|
|
form_constantes($constantes, 0, $helptext);
|
|
|
|
|
|
2022-02-18 14:14:34 +01:00
|
|
|
//print '</form>';
|
2022-02-18 13:46:12 +01:00
|
|
|
|
2020-11-14 00:48:13 +01:00
|
|
|
print "<br>";
|
2012-04-28 16:37:58 +02:00
|
|
|
|
2020-10-27 18:19:31 +01:00
|
|
|
print dol_get_fiche_end();
|
2011-06-22 17:43:14 +02:00
|
|
|
|
2018-07-28 14:29:28 +02:00
|
|
|
// End of page
|
2011-08-27 16:24:16 +02:00
|
|
|
llxFooter();
|
2012-01-11 18:43:38 +01:00
|
|
|
$db->close();
|