71832e8043419e6b21700591ee143c860969324c
[mailer.git] / inc / modules / admin / what-edit_sponsor.php
1 <?php
2 /************************************************************************
3  * M-XChange v0.2.1                                   Start: 04/24/2005 *
4  * ================                             Last change: 05/12/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-edit_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 }
44
45 // Add description as navigation point
46 ADD_DESCR('admin', __FILE__);
47
48 if ((REQUEST_ISSET_GET(('id'))) && (REQUEST_ISSET_GET(('mode')))) {
49         // Check for selected sponsor
50         $result = SQL_QUERY_ESC("SELECT company, position, gender, surname, family, street_nr1, street_nr2, zip, city, country, phone, fax, cell, email, url, tax_ident, receive_warnings, warning_interval FROM `{!_MYSQL_PREFIX!}_sponsor_data` WHERE id='%s' LIMIT 1",
51          array(bigintval(REQUEST_GET('id'))), __FILE__, __LINE__);
52         if (SQL_NUMROWS($result) == 1) {
53                 // Load sponsor details
54                 $DATA = SQL_FETCHARRAY($result);
55                 SQL_FREERESULT($result);
56
57                 // Prepare all data for the template
58                 //  Sponsor's ID
59                 define('__SPONSOR_ID' , bigintval(REQUEST_GET('id')));
60                 //  Company's data
61                 define('__COMPANY'    , $DATA['company']);
62                 define('__POSITION'   , $DATA['position']);
63                 define('__TAX_IDENT'  , $DATA['tax_ident']);
64                 //  Personal data
65                 switch ($DATA['gender'])
66                 {
67                 case "M":
68                         define('__GENDER_M', " selected=\"selected\"");
69                         define('__GENDER_F', '');
70                         define('__GENDER_C', '');
71                         break;
72
73                 case "F":
74                         define('__GENDER_M', '');
75                         define('__GENDER_F', " selected=\"selected\"");
76                         define('__GENDER_C', '');
77                         break;
78
79                 case "C":
80                         define('__GENDER_M', '');
81                         define('__GENDER_F', '');
82                         define('__GENDER_C', " selected=\"selected\"");
83                         break;
84                 }
85                 define('__SURNAME'    , $DATA['surname']);
86                 define('__FAMILY'     , $DATA['family']);
87                 define('__STREET1'    , $DATA['street_nr1']);
88                 define('__STREET2'    , $DATA['street_nr2']);
89                 define('__ZIP'        , $DATA['zip']);
90                 define('__CITY'       , $DATA['city']);
91                 define('__COUNTRY'    , $DATA['country']);
92                 //  Contact data
93                 define('__PHONE'      , $DATA['phone']);
94                 define('__FAX'        , $DATA['fax']);
95                 define('__CELL'       , $DATA['cell']);
96                 define('__EMAIL'      , $DATA['email']);
97                 define('__URL'        , $DATA['url']);
98                 //  Warning because low points
99                 define('__REC_WARNING', ADD_SELECTION("yn", $DATA['receive_warnings'], "receive_warning"));
100                 define('__INTERVAL'   , CREATE_TIME_SELECTIONS($DATA['warning_interval'], "warning_interval", "MWDh"));
101
102                 // Init variables here
103                 $TPL = sprintf("admin_edit_sponsor_%s", REQUEST_GET(('mode')));
104                 INIT_SQLS();
105
106                 // Sponsor was found
107                 if ((IS_FORM_SENT()) || (REQUEST_ISSET_POST('edit'))) {
108                         // Perform action on mode
109                         switch (REQUEST_GET('mode'))
110                         {
111                         case "add_points": // Add points
112                                 if (strval(REQUEST_POST('points')) > 0) {
113                                         // Replace german decimal comma with computer's decimal dot
114                                         $POINTS = strval(REVERT_COMMA(REQUEST_POST('points')));
115
116                                         // Add points to account
117                                         SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_sponsor_data` SET points_amount=points_amount+%s WHERE id='%s' LIMIT 1",
118                                                 array($POINTS, bigintval(REQUEST_GET('id'))), __FILE__, __LINE__);
119
120                                         // Remember points /reason for the template
121                                         define('__POINTS' , TRANSLATE_COMMA($POINTS));
122                                         define('__REASON' , REQUEST_POST('reason'));
123
124                                         // Send email
125                                         $msg = LOAD_EMAIL_TEMPLATE("sponsor_add_points", REQUEST_POST('reason'), true);
126                                         SEND_EMAIL(__EMAIL, ADMIN_SPONSOR_ADD_POINTS_SUBJ, $msg);
127                                         $message = ADMIN_SPONSOR_POINTS_ADDED;
128                                 } else {
129                                         // No points entered to add!
130                                         $message = ADMIN_SPONSPOR_NO_POINTS_TO_ADD;
131                                 }
132                                 break;
133
134                         case "sub_points": // Subtract points
135                                 if (strval(REQUEST_POST('points')) > 0) {
136                                         // Replace german decimal comma with computer's decimal dot
137                                         $POINTS = strval(REVERT_COMMA(REQUEST_POST('points')));
138
139                                         // Add points to account
140                                         SQL_QUERY_ESC("UPDATE `{!_MYSQL_PREFIX!}_sponsor_data` SET points_used=points_used+%s WHERE id='%s' LIMIT 1",
141                                                 array($POINTS, bigintval(REQUEST_GET('id'))), __FILE__, __LINE__);
142
143                                         // Remember points /reason for the template
144                                         define('__POINTS' , TRANSLATE_COMMA($POINTS));
145                                         define('__REASON' , REQUEST_POST('reason'));
146
147                                         // Send email
148                                         $msg = LOAD_EMAIL_TEMPLATE("sponsor_sub_points", REQUEST_POST('reason'), true);
149                                         SEND_EMAIL(__EMAIL, ADMIN_SPONSOR_SUB_POINTS_SUBJ, $msg);
150                                         $message = ADMIN_SPONSOR_POINTS_SUBTRACTED;
151                                 } else {
152                                         // No points entered to add!
153                                         $message = ADMIN_SPONSPOR_NO_POINTS_TO_SUBTRACT;
154                                 }
155                                 break;
156
157                         case "edit": // Edit sponsor account
158                                 $PASS = true;
159                                 if ((REQUEST_POST('pass1') != REQUEST_POST('pass2')) || ((!REQUEST_ISSET_POST(('pass1'))) && (!REQUEST_ISSET_POST(('pass1'))))) {
160                                         // Remove passwords
161                                         REQUEST_UNSET_POST(('pass1'));
162                                         REQUEST_UNSET_POST(('pass2'));
163                                         $PASS = false;
164                                 }
165
166                                 // Convert time selection
167                                 $DATA = array(); $id = "warning_interval_ye"; $skip = false;
168                                 CONVERT_SELECTIONS_TO_TIMESTAMP(REQUEST_POST_ARRAY(), $DATA, $id, $skip);
169
170                                 // Save the sponsor
171                                 SPONSOR_HANDLE_SPONSOR(REQUEST_POST_ARRAY());
172
173                                 // Convert some data for the email template
174                                 REQUEST_POST('gender'          , TRANSLATE_GENDER(REQUEST_POST('gender')));
175                                 REQUEST_POST('warning_interval', CREATE_FANCY_TIME(REQUEST_POST('warning_interval')));
176
177                                 if (!$PASS) REQUEST_SET_POST('pass1', getMessage('SPONSOR_PASS_UNCHANGED'));
178
179                                 // Load email template and send the mail away
180                                 $msg = LOAD_EMAIL_TEMPLATE("admin_sponsor_edit", REQUEST_POST_ARRAY(), false);
181                                 SEND_EMAIL(REQUEST_POST('email'), getMessage('ADMIN_SPONSOR_EDIT_SUBJECT'), $msg);
182                                 break;
183
184                         default: // Unknown mode
185                                 DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown mode %s detected.", REQUEST_GET('mode')));
186                                 $message = sprintf(getMessage('ADMIN_SPONSOR_INVALID_MODE'), REQUEST_GET(('mode')));
187                                 break;
188                         }
189
190                         if (!empty($message)) {
191                                 // Output message
192                                 LOAD_TEMPLATE('admin_settings_saved', false, $message);
193                         } // END - if
194                 } elseif (FILE_READABLE(sprintf("%stemplates/%s/html/admin/%s.tpl", constant('PATH'), GET_LANGUAGE(), $TPL))) {
195                         // Create mailto link
196                         define('__SPONSOR_VALUE', "<a href=\"mailto:{!__EMAIL!}\">{!__SURNAME!} {!__FAMILY!}</a>");
197
198                         // Load mode template
199                         LOAD_TEMPLATE($TPL);
200                 } else {
201                         // Template not found!
202                         LOAD_TEMPLATE('admin_settings_saved', false, sprintf(getMessage('ADMIN_SPONSOR_MODUS_TPL_404'), REQUEST_GET(('mode'))));
203                 }
204         } else {
205                 // Sponsor not found!
206                 LOAD_TEMPLATE('admin_settings_saved', false, sprintf(getMessage('ADMIN_SPONSOR_404'), bigintval(REQUEST_GET('id'))));
207         }
208 } else {
209         // Not called by what-list_sponsor.php
210         LOAD_TEMPLATE('admin_settings_saved', false, getMessage('ADMIN_CALL_NOT_DIRECTLY'));
211 }
212
213 //
214 ?>