This repository has been archived by the owner on Sep 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 124
/
selleremails.php
60 lines (54 loc) · 2.77 KB
/
selleremails.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?php
/***************************************************************************
* copyright : (C) 2008 - 2017 WeBid
* site : http://www.webidsupport.com/
***************************************************************************/
/***************************************************************************
* 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 2 of the License, or
* (at your option) any later version. Although none of the code may be
* sold. If you have been sold this script, get a refund.
***************************************************************************/
include 'common.php';
if (!$user->checkAuth()) {
$_SESSION['LOGIN_MESSAGE'] = $MSG['5000'];
$_SESSION['REDIRECT_AFTER_LOGIN'] = 'selleremails.php';
header('location: user_login.php');
exit;
}
// Create new list
if (isset($_POST['action']) && $_POST['action'] == 'update') {
// check values
if (in_array($_POST['endemailmod'], array('one', 'cum', 'none')) && in_array($_POST['startemailmod'], array('yes', 'no')) && in_array($_POST['emailtype'], array('html', 'text'))) {
$query = "UPDATE " . $DBPrefix . "users SET endemailmode = :endemailmod,
startemailmode = :startemailmod,
emailtype = :emailtype WHERE id = :user_id";
$params = array(
array(':endemailmod', $_POST['endemailmod'], 'str'),
array(':startemailmod', $_POST['startemailmod'], 'str'),
array(':emailtype', $_POST['emailtype'], 'str'),
array(':user_id', $user->user_data['id'], 'int'),
);
$db->query($query, $params);
$ERR = $MSG['25_0192'];
$user->user_data = array_merge($user->user_data, $_POST); //update the array
}
}
$template->assign_vars(array(
'B_AUCSETUPY' => ($user->user_data['startemailmode'] == 'yes') ? ' checked="checked"' : '',
'B_AUCSETUPN' => ($user->user_data['startemailmode'] == 'no') ? ' checked="checked"' : '',
'B_CLOSEONE' => ($user->user_data['endemailmode'] == 'one') ? ' checked="checked"' : '',
'B_CLOSEBULK' => ($user->user_data['endemailmode'] == 'cum') ? ' checked="checked"' : '',
'B_CLOSENONE' => ($user->user_data['endemailmode'] == 'none') ? ' checked="checked"' : '',
'B_EMAILTYPET' => ($user->user_data['emailtype'] == 'text') ? ' checked="checked"' : '',
'B_EMAILTYPEH' => ($user->user_data['emailtype'] == 'html') ? ' checked="checked"' : ''
));
include 'header.php';
$TMP_usmenutitle = $MSG['25_0188'];
include INCLUDE_PATH . 'user_cp.php';
$template->set_filenames(array(
'body' => 'sellermails.tpl'
));
$template->display('body');
include 'footer.php';