More misc fixes and rewrites (sorry, lame description)
[mailer.git] / inc / modules / admin / what-lock_sponsor.php
1 <?php
2 /************************************************************************
3  * M-XChange v0.2.1                                   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 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 } // END - if
44
45 // Add description as navigation point
46 ADD_DESCR('admin', __FILE__);
47 $message = '';
48
49 if (REQUEST_ISSET_GET('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(REQUEST_GET('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                 $DATA = SQL_FETCHARRAY($result_sponsor);
56
57                 if (($DATA['status'] == 'CONFIRMED') || ($DATA['status'] == 'LOCKED')) {
58                         // Transfer data to constants
59                         define('__GENDER'  , translateGender($DATA['gender']));
60                         define('__SURNAME', $DATA['surname']);
61                         define('__FAMILY' , $DATA['family']);
62                         define('__ID'     , bigintval(REQUEST_GET('id')));
63
64                         if (isFormSent()) {
65                                 // Create messages
66                                 if ($DATA['status'] == 'CONFIRMED') {
67                                         // Message when sponsor's account got lock
68                                         define('__EMAIL_MSG', getMessage('SPONSOR_ACCOUNT_LOCKED'));
69                                         $subject = getMessage('SPONSOR_SUBJECT_LOCKED');
70                                         $DATA['status'] = 'LOCKED';
71                                 } else {
72                                         // Message when sponsor's account got unlock
73                                         define('__EMAIL_MSG', getMessage('SPONSOR_ACCOUNT_UNLOCKED'));
74                                         $subject = getMessage('SPONSOR_SUBJECT_UNLOCKED');
75                                         $DATA['status'] = 'CONFIRMED';
76                                 }
77
78                                 // Load email message
79                                 $message = LOAD_EMAIL_TEMPLATE('lock_sponsor', REQUEST_POST('reason'), bigintval(REQUEST_GET('id')));
80
81                                 // And send it away
82                                 sendEmail($DATA['email'], $subject, $message);
83
84                                 // Update sponsor's account
85                                 SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_sponsor_data` SET `status`='".$DATA['status']."' WHERE `id`='%s' LIMIT 1",
86                                         array(bigintval(REQUEST_GET('id'))), __FILE__, __LINE__);
87                         } elseif (REQUEST_ISSET_POST('no')) {
88                                 // No don't lock / unlock now!
89                                 redirectToUrl('modules.php?module=admin&amp;what=list_sponsor&amp;id='.bigintval(REQUEST_GET('id')));
90                         } else {
91                                 // Create header and text messages
92                                 if ($DATA['status'] == 'CONFIRMED') {
93                                         // Messages when sponsor's account is confirmed
94                                         define('__HEADER_MESSAGE', getMessage('SPONSOR_LOCK_SPONSOR_HEADER'));
95                                         define('__TEXT_MESSAGE'  , getMessage('SPONSOR_LOCK_SPONSOR_TEXT'));
96                                 } else {
97                                         // Messages when sponsor's account is locked
98                                         define('__HEADER_MESSAGE', getMessage('SPONSOR_UNLOCK_SPONSOR_HEADER'));
99                                         define('__TEXT_MESSAGE'  , getMessage('SPONSOR_UNLOCK_SPONSOR_TEXT'));
100                                 }
101
102                                 // Create email link
103                                 define('__EMAIL_LINK', '<a href="' . generateEmailLink($DATA['email'], 'sponsor_data') . '">{!__GENDER!} {!__SURNAME!} {!__FAMILY!}</a>');
104
105                                 // Display form
106                                 LOAD_TEMPLATE('admin_lock_sponsor');
107                         }
108                 } else {
109                         // Cannot change status on unconfirmed or pending accounts!
110                         $message = getMessage('ADMIN_SPONSPOR_CANNOT_LOCK_PENDING_UNCINFIRMED_ACCOUNTS');
111                 }
112         } else {
113                 // Sponsor not found!
114                 $message = sprintf(getMessage('ADMIN_SPONSOR_404'), bigintval(REQUEST_GET('id')));
115         }
116
117         // Free result
118         SQL_FREERESULT($result_sponsor);
119 } else {
120         // Not called by what-list_sponsor.php
121         $message = getMessage('ADMIN_CALL_NOT_DIRECTLY');
122 }
123
124 if (!empty($message)) {
125         // Output message
126         LOAD_TEMPLATE('admin_settings_saved', false, $message);
127 } // END - if
128
129 //
130 ?>