Renamed ifSqlHasZeroNums() to ifSqlHasZeroNumRows() and improved some queries.
[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  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
20  * For more information visit: http://mxchange.org                      *
21  *                                                                      *
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.                                  *
26  *                                                                      *
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.                         *
31  *                                                                      *
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,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45 $message = '';
46
47 if (isGetRequestElementSet('id')) {
48         // Check for selected sponsor
49         $result_sponsor = sqlQueryEscaped("SELECT `gender`, `surname`, `family`, `email`, `status` FROM `{?_MYSQL_PREFIX?}_sponsor_data` WHERE `id`=%s LIMIT 1",
50                 array(bigintval(getRequestElement('id'))), __FILE__, __LINE__);
51         if (sqlNumRows($result_sponsor) == 1) {
52                 // Get sponsor's current status and let only confirmed and locked status pass
53                 $content = sqlFetchArray($result_sponsor);
54
55                 if (($content['status'] == 'CONFIRMED') || ($content['status'] == 'LOCKED')) {
56                         // Transfer data to constants
57                         $content['id']     = bigintval(getRequestElement('id'));
58                         $content['reason'] = postRequestElement('reason');
59
60                         if (isFormSent()) {
61                                 // Create messages
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';
67                                 } else {
68                                         // Message when sponsor's account got unlock
69                                         $content['message'] = '{--SPONSOR_ACCOUNT_UNLOCKED--}';
70                                         $subject = '{--SPONSOR_UNLOCKED_SUBJECT--}';
71                                         $content['status'] = 'CONFIRMED';
72                                 }
73
74                                 // Load email message
75                                 $message = loadEmailTemplate('sponsor_locked', $content, bigintval(getRequestElement('id')));
76
77                                 // And send it away
78                                 sendEmail($content['email'], $subject, $message);
79
80                                 // Update sponsor's account
81                                 sqlQueryEscaped("UPDATE `{?_MYSQL_PREFIX?}_sponsor_data` SET `status`='%s' WHERE `id`=%s LIMIT 1",
82                                         array($content['status'], bigintval(getRequestElement('id'))), __FILE__, __LINE__);
83                         } elseif (isPostRequestElementSet('no')) {
84                                 // No don't lock / unlock now!
85                                 redirectToUrl('modules.php?module=admin&amp;what=list_sponsor&amp;id=' . bigintval(getRequestElement('id')));
86                         } else {
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--}';
92                                 } else {
93                                         // Messages when sponsor's account is locked
94                                         $content['header_message'] = '{--SPONSOR_UNLOCK_SPONSOR_HEADER--}';
95                                         $content['text_message']   = '{--SPONSOR_UNLOCK_SPONSOR_TEXT--}';
96                                 }
97
98                                 // Create email link
99                                 $content['email_link'] = '<a href="' . generateEmailLink($content['email'], 'sponsor_data') . '">' . $content['gender'] . ' ' . $content['surname'] . ' ' . $content['family'] . '</a>';
100
101                                 // Display form
102                                 loadTemplate('admin_lock_sponsor', FALSE, $content);
103                         }
104                 } else {
105                         // Cannot change status on unconfirmed or pending accounts!
106                         $message = '{--ADMIN_SPONSOR_CANNOT_LOCK_PENDING_UNCINFIRMED_ACCOUNTS--}';
107                 }
108         } else {
109                 // Sponsor not found
110                 $message = '{%message,ADMIN_SPONSOR_404=' . bigintval(getRequestElement('id')) . '%}';
111         }
112
113         // Free result
114         sqlFreeResult($result_sponsor);
115 } else {
116         // Not called by what-list_sponsor.php
117         $message = '{--ADMIN_CALL_NOT_DIRECTLY--}';
118 }
119
120 if (!empty($message)) {
121         // Output message
122         displayMessage($message);
123 } // END - if
124
125 // [EOF]
126 ?>