239 lines
7.8 KiB
PHP
239 lines
7.8 KiB
PHP
<?php
|
|
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
* Copyright (C) 2003 Jean-Louis Bergamo <jlb@j1b.org>
|
|
* Copyright (C) 2004-2011 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
* Copyright (C) 2004 Sebastien Di Cintio <sdicintio@ressource-toi.org>
|
|
* Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
|
|
* Copyright (C) 2005-2011 Regis Houssin <regis.houssin@inodbox.com>
|
|
* Copyright (C) 2011-2013 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 <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/**
|
|
* \file htdocs/admin/mailman.php
|
|
* \ingroup mailmanspip
|
|
* \brief Page to setup the module MailmanSpip (Mailman)
|
|
*/
|
|
|
|
// Load Dolibarr environment
|
|
require '../main.inc.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/mailmanspip.lib.php';
|
|
require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
|
|
|
|
// Load translation files required by the page
|
|
$langs->loadLangs(array("admin", "members", "mailmanspip"));
|
|
|
|
if (!$user->admin) {
|
|
accessforbidden();
|
|
}
|
|
|
|
|
|
$type = array('yesno', 'texte', 'chaine');
|
|
|
|
$action = GETPOST('action', 'aZ09');
|
|
$testsubscribeemail = GETPOST("testsubscribeemail");
|
|
$testunsubscribeemail = GETPOST("testunsubscribeemail");
|
|
|
|
$error = 0;
|
|
|
|
|
|
/*
|
|
* Actions
|
|
*/
|
|
|
|
// Action updated or added a constant
|
|
if ($action == 'update' || $action == 'add') {
|
|
$tmparray = GETPOST('constname', 'array');
|
|
if (is_array($tmparray)) {
|
|
foreach ($tmparray as $key => $val) {
|
|
$constname = $tmparray[$key];
|
|
$constvalue = $tmparray[$key];
|
|
$consttype = $tmparray[$key];
|
|
$constnote = $tmparray[$key];
|
|
$res = dolibarr_set_const($db, $constname, $constvalue, $type[$consttype], 0, $constnote, $conf->entity);
|
|
|
|
if (!($res > 0)) {
|
|
$error++;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!$error) {
|
|
setEventMessages($langs->trans("SetupSaved"), null, 'mesgs');
|
|
} else {
|
|
setEventMessages($langs->trans("Error"), null, 'errors');
|
|
}
|
|
}
|
|
|
|
// Action to activate a submodule of the 'adherent' module
|
|
if ($action == 'set') {
|
|
$result = dolibarr_set_const($db, GETPOST("name", 'aZ09'), GETPOST("value"), '', 0, '', $conf->entity);
|
|
if ($result < 0) {
|
|
dol_print_error($db);
|
|
}
|
|
}
|
|
|
|
// Action to deactivate a submodule of the 'adherent' module
|
|
if ($action == 'unset') {
|
|
$result = dolibarr_del_const($db, GETPOST("name", 'aZ09'), $conf->entity);
|
|
if ($result < 0) {
|
|
dol_print_error($db);
|
|
}
|
|
}
|
|
|
|
if (($action == 'testsubscribe' || $action == 'testunsubscribe') && getDolGlobalString('ADHERENT_USE_MAILMAN')) {
|
|
$email = GETPOST($action.'email');
|
|
if (!isValidEmail($email)) {
|
|
$langs->load("errors");
|
|
setEventMessages($langs->trans("ErrorBadEMail", $email), null, 'errors');
|
|
} else {
|
|
include_once DOL_DOCUMENT_ROOT.'/mailmanspip/class/mailmanspip.class.php';
|
|
$mailmanspip = new MailmanSpip($db);
|
|
|
|
$object = new stdClass();
|
|
$object->email = $email;
|
|
$object->pass = $email;
|
|
/*$object->element='member';
|
|
$object->type='Preferred Partners'; */
|
|
|
|
if ($action == 'testsubscribe') {
|
|
$result = $mailmanspip->add_to_mailman($object);
|
|
if ($result < 0) {
|
|
$error++;
|
|
setEventMessages($mailmanspip->error, $mailmanspip->errors, 'errors');
|
|
} else {
|
|
setEventMessages($langs->trans("MailmanCreationSuccess"), null);
|
|
}
|
|
}
|
|
if ($action == 'testunsubscribe') {
|
|
$result = $mailmanspip->del_to_mailman($object);
|
|
if ($result < 0) {
|
|
$error++;
|
|
setEventMessages($mailmanspip->error, $mailmanspip->errors, 'errors');
|
|
} else {
|
|
setEventMessages($langs->trans("MailmanDeletionSuccess"), null);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
/*
|
|
* View
|
|
*/
|
|
|
|
$help_url = '';
|
|
|
|
llxHeader('', $langs->trans("MailmanSpipSetup"), $help_url, '', 0, 0, '', '', '', 'mod-admin page-mailman');
|
|
|
|
|
|
$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
|
|
print load_fiche_titre($langs->trans("MailmanSpipSetup"), $linkback, 'title_setup');
|
|
|
|
$head = mailmanspip_admin_prepare_head();
|
|
|
|
if (getDolGlobalString('ADHERENT_USE_MAILMAN')) {
|
|
print '<form action="'.$_SERVER["PHP_SELF"].'" method="POST">';
|
|
print '<input type="hidden" name="token" value="'.newToken().'">';
|
|
print '<input type="hidden" name="action" value="update">';
|
|
|
|
print dol_get_fiche_head($head, 'mailman', $langs->trans("Setup"), -1, 'user');
|
|
|
|
//$link=img_picto($langs->trans("Active"),'tick').' ';
|
|
$link = '<a class="reposition" href="'.$_SERVER["PHP_SELF"].'?action=unset&token='.newToken().'&value=0&name=ADHERENT_USE_MAILMAN">';
|
|
//$link.=$langs->trans("Disable");
|
|
$link .= img_picto($langs->trans("Activated"), 'switch_on');
|
|
$link .= '</a>';
|
|
// Edit the global variables
|
|
$constantes = array(
|
|
'ADHERENT_MAILMAN_ADMIN_PASSWORD',
|
|
'ADHERENT_MAILMAN_URL',
|
|
'ADHERENT_MAILMAN_UNSUB_URL',
|
|
'ADHERENT_MAILMAN_LISTS'
|
|
);
|
|
|
|
print load_fiche_titre($langs->trans('MailmanTitle'), $link, '');
|
|
|
|
print '<br>';
|
|
|
|
// JQuery activity
|
|
print '<script type="text/javascript">
|
|
var i1=0;
|
|
var i2=0;
|
|
var i3=0;
|
|
jQuery(document).ready(function(){
|
|
jQuery("#exampleclick1").click(function(event){
|
|
if (i1 == 0) { jQuery("#example1").show(); i1=1; }
|
|
else if (i1 == 1) { jQuery("#example1").hide(); i1=0; }
|
|
});
|
|
jQuery("#exampleclick2").click(function(){
|
|
if (i2 == 0) { jQuery("#example2").show(); i2=1; }
|
|
else if (i2 == 1) { jQuery("#example2").hide(); i2=0; }
|
|
});
|
|
jQuery("#exampleclick3").click(function(){
|
|
if (i3 == 0) { jQuery("#example3").show(); i3=1; }
|
|
else if (i3 == 1) { jQuery("#example3").hide(); i3=0; }
|
|
});
|
|
});
|
|
</script>';
|
|
|
|
form_constantes($constantes, 2);
|
|
|
|
print '*'.$langs->trans("FollowingConstantsWillBeSubstituted").'<br>';
|
|
print '%LISTE%, %MAILMAN_ADMINPW%, %EMAIL% <br>';
|
|
|
|
print dol_get_fiche_end();
|
|
|
|
print '<div class="center"><input type="submit" class="button" value="'.$langs->trans("Update").'" name="update"></div>';
|
|
|
|
print '</form>';
|
|
} else {
|
|
print dol_get_fiche_head($head, 'mailman', $langs->trans("Setup"), 0, 'user');
|
|
|
|
$link = '<a href="'.$_SERVER["PHP_SELF"].'?action=set&token='.newToken().'&value=1&name=ADHERENT_USE_MAILMAN">';
|
|
//$link.=img_$langs->trans("Activate")
|
|
$link .= img_picto($langs->trans("Disabled"), 'switch_off');
|
|
$link .= '</a>';
|
|
print load_fiche_titre($langs->trans('MailmanTitle'), $link, '');
|
|
|
|
print dol_get_fiche_end();
|
|
}
|
|
|
|
|
|
if (getDolGlobalString('ADHERENT_USE_MAILMAN')) {
|
|
print '<form action="'.$_SERVER["PHP_SELF"].'">';
|
|
print '<input type="hidden" name="token" value="'.newToken().'">';
|
|
print '<input type="hidden" name="action" value="testsubscribe">';
|
|
|
|
print $langs->trans("TestSubscribe").'<br>';
|
|
print $langs->trans("EMail").' <input type="email" class="flat" name="testsubscribeemail" value="'.GETPOST('testsubscribeemail').'"> <input type="submit" class="button" value="'.$langs->trans("Test").'"><br>';
|
|
|
|
print '</form>';
|
|
|
|
print '<form action="'.$_SERVER["PHP_SELF"].'">';
|
|
print '<input type="hidden" name="token" value="'.newToken().'">';
|
|
print '<input type="hidden" name="action" value="testunsubscribe">';
|
|
|
|
print $langs->trans("TestUnSubscribe").'<br>';
|
|
print $langs->trans("EMail").' <input type="email" class="flat" name="testunsubscribeemail" value="'.GETPOST('testunsubscribeemail').'"> <input type="submit" class="button" value="'.$langs->trans("Test").'"><br>';
|
|
|
|
print '</form>';
|
|
}
|
|
|
|
// End of page
|
|
llxFooter();
|
|
$db->close();
|