2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 04/24/2005 *
4 * =================== Last change: 05/19/2008 *
6 * -------------------------------------------------------------------- *
7 * File : what-lock_sponsor.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Edit sponsor account *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Sponsorenaccount aendern *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2011 by Mailer Developer Team *
20 * For more information visit: http://www.mxchange.org *
22 * This program is free software; you can redistribute it and/or modify *
23 * it under the terms of the GNU General Public License as published by *
24 * the Free Software Foundation; either version 2 of the License, or *
25 * (at your option) any later version. *
27 * This program is distributed in the hope that it will be useful, *
28 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
29 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
30 * GNU General Public License for more details. *
32 * You should have received a copy of the GNU General Public License *
33 * along with this program; if not, write to the Free Software *
34 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *
36 ************************************************************************/
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
47 if (isGetRequestParameterSet('id')) {
48 // Check for selected sponsor
49 $result_sponsor = SQL_QUERY_ESC("SELECT `gender`, `surname`, `family`, `email`, `status` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `id`=%s LIMIT 1",
50 array(bigintval(getRequestParameter('id'))), __FILE__, __LINE__);
51 if (SQL_NUMROWS($result_sponsor) == 1) {
52 // Get sponsor's current status and let only confirmed and locked status pass
53 $content = SQL_FETCHARRAY($result_sponsor);
55 if (($content['status'] == 'CONFIRMED') || ($content['status'] == 'LOCKED')) {
56 // Transfer data to constants
57 $content['id'] = bigintval(getRequestParameter('id'));
58 $content['reason'] = postRequestParameter('reason');
62 if ($content['status'] == 'CONFIRMED') {
63 // Message when sponsor's account got lock
64 $content['message'] = '{--SPONSOR_ACCOUNT_LOCKED--}';
65 $subject = '{--SPONSOR_LOCKED_SUBJECT--}';
66 $content['status'] = 'LOCKED';
68 // Message when sponsor's account got unlock
69 $content['message'] = '{--SPONSOR_ACCOUNT_UNLOCKED--}';
70 $subject = '{--SPONSOR_UNLOCKED_SUBJECT--}';
71 $content['status'] = 'CONFIRMED';
75 $message = loadEmailTemplate('lock_sponsor', $content, bigintval(getRequestParameter('id')));
78 sendEmail($content['email'], $subject, $message);
80 // Update sponsor's account
81 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_sponsor_data` SET `status`='%s' WHERE `id`=%s LIMIT 1",
82 array($content['status'], bigintval(getRequestParameter('id'))), __FILE__, __LINE__);
83 } elseif (isPostRequestParameterSet('no')) {
84 // No don't lock / unlock now!
85 redirectToUrl('modules.php?module=admin&what=list_sponsor&id=' . bigintval(getRequestParameter('id')));
87 // Create header and text messages
88 if ($content['status'] == 'CONFIRMED') {
89 // Messages when sponsor's account is confirmed
90 $content['header_message'] = '{--SPONSOR_LOCK_SPONSOR_HEADER--}';
91 $content['text_message'] = '{--SPONSOR_LOCK_SPONSOR_TEXT--}';
93 // Messages when sponsor's account is locked
94 $content['header_message'] = '{--SPONSOR_UNLOCK_SPONSOR_HEADER--}';
95 $content['text_message'] = '{--SPONSOR_UNLOCK_SPONSOR_TEXT--}';
99 $content['email_link'] = '<a href="' . generateEmailLink($content['email'], 'sponsor_data') . '">' . $content['gender'] . ' ' . $content['surname'] . ' ' . $content['family'] . '</a>';
102 loadTemplate('admin_lock_sponsor', false, $content);
105 // Cannot change status on unconfirmed or pending accounts!
106 $message = '{--ADMIN_SPONSOR_CANNOT_LOCK_PENDING_UNCINFIRMED_ACCOUNTS--}';
110 $message = '{%message,ADMIN_SPONSOR_404=' . bigintval(getRequestParameter('id')) . '%}';
114 SQL_FREERESULT($result_sponsor);
116 // Not called by what-list_sponsor.php
117 $message = '{--ADMIN_CALL_NOT_DIRECTLY--}';
120 if (!empty($message)) {
122 displayMessage($message);