A lot code rewritten:
[mailer.git] / inc / modules / admin / what-lock_sponsor.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 04/24/2005 *
4  * ===================                          Last change: 05/19/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-lock_sponsor.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : Edit sponsor account                             *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Sponsorenaccount aendern                         *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
42         die();
43 } // END - if
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47 $message = '';
48
49 if (isGetRequestParameterSet('id')) {
50         // Check for selected sponsor
51         $result_sponsor = SQL_QUERY_ESC("SELECT `gender`, `surname`, `family`, `email`, `status` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `id`='%s' LIMIT 1",
52                 array(bigintval(getRequestParameter('id'))), __FILE__, __LINE__);
53         if (SQL_NUMROWS($result_sponsor) == 1) {
54                 // Get sponsor's current status and let only confirmed and locked status pass
55                 $content = SQL_FETCHARRAY($result_sponsor);
56
57                 if (($content['status'] == 'CONFIRMED') || ($content['status'] == 'LOCKED')) {
58                         // Transfer data to constants
59                         $content['id']     = bigintval(getRequestParameter('id'));
60                         $content['reason'] = secureString(postRequestParameter('reason'));
61
62                         if (isFormSent()) {
63                                 // Create messages
64                                 if ($content['status'] == 'CONFIRMED') {
65                                         // Message when sponsor's account got lock
66                                         $content['message'] = '{--SPONSOR_ACCOUNT_LOCKED--}';
67                                         $subject = '{--SPONSOR_LOCKED_SUBJECT--}';
68                                         $content['status'] = 'LOCKED';
69                                 } else {
70                                         // Message when sponsor's account got unlock
71                                         $content['message'] = '{--SPONSOR_ACCOUNT_UNLOCKED--}';
72                                         $subject = '{--SPONSOR_UNLOCKED_SUBJECT--}';
73                                         $content['status'] = 'CONFIRMED';
74                                 }
75
76                                 // Load email message
77                                 $message = loadEmailTemplate('lock_sponsor', $content, bigintval(getRequestParameter('id')));
78
79                                 // And send it away
80                                 sendEmail($content['email'], $subject, $message);
81
82                                 // Update sponsor's account
83                                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_sponsor_data` SET `status`='%s' WHERE `id`='%s' LIMIT 1",
84                                         array($content['status'], bigintval(getRequestParameter('id'))), __FILE__, __LINE__);
85                         } elseif (isPostRequestParameterSet('no')) {
86                                 // No don't lock / unlock now!
87                                 redirectToUrl('modules.php?module=admin&amp;what=list_sponsor&amp;id=' . bigintval(getRequestParameter('id')));
88                         } else {
89                                 // Create header and text messages
90                                 if ($content['status'] == 'CONFIRMED') {
91                                         // Messages when sponsor's account is confirmed
92                                         $content['header_message'] = '{--SPONSOR_LOCK_SPONSOR_HEADER--}';
93                                         $content['text_message']   = '{--SPONSOR_LOCK_SPONSOR_TEXT--}';
94                                 } else {
95                                         // Messages when sponsor's account is locked
96                                         $content['header_message'] = '{--SPONSOR_UNLOCK_SPONSOR_HEADER--}';
97                                         $content['text_message']   = '{--SPONSOR_UNLOCK_SPONSOR_TEXT--}';
98                                 }
99
100                                 // Create email link
101                                 $content['email_link'] = '<a href="' . generateEmailLink($content['email'], 'sponsor_data') . '">' . $content['gender'] . ' ' . $content['surname'] . ' ' . $content['family'] . '</a>';
102
103                                 // Display form
104                                 loadTemplate('admin_lock_sponsor', false, $content);
105                         }
106                 } else {
107                         // Cannot change status on unconfirmed or pending accounts!
108                         $message = '{--ADMIN_SPONSPOR_CANNOT_LOCK_PENDING_UNCINFIRMED_ACCOUNTS--}';
109                 }
110         } else {
111                 // Sponsor not found!
112                 $message = getMaskedMessage('ADMIN_SPONSOR_404', bigintval(getRequestParameter('id')));
113         }
114
115         // Free result
116         SQL_FREERESULT($result_sponsor);
117 } else {
118         // Not called by what-list_sponsor.php
119         $message = '{--ADMIN_CALL_NOT_DIRECTLY--}';
120 }
121
122 if (!empty($message)) {
123         // Output message
124         loadTemplate('admin_settings_saved', false, $message);
125 } // END - if
126
127 // [EOF]
128 ?>