New (template) wrapper function fixEmptyContentToDashes() introduced, EL rewrites:
[mailer.git] / inc / modules / member / what-transfer.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/07/2004 *
4  * ===================                          Last change: 10/07/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-transfer.php                                *
8  * -------------------------------------------------------------------- *
9  * Short description : Point transfers                                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Punktetransfers                                  *
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')) {
42         die();
43 } elseif (!isMember()) {
44         redirectToIndexMemberOnlyModule();
45 }
46
47 // Add description as navigation point
48 addMenuDescription('member', __FILE__);
49
50 if ((!isExtensionActive('transfer')) && (!isAdmin())) {
51         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('transfer'));
52         return;
53 } // END - if
54
55 // Check for mode in GET
56 $mode = '';
57 if (isGetRequestParameterSet('mode')) $mode = getRequestParameter('mode');
58
59 // Check for "faker"
60 if ((getUserData('opt_in') != 'Y') && ($mode == 'new')) $mode = '';
61
62 switch ($mode) {
63         case 'new': // Start new transfer
64                 // Get total points and subtract the balance amount from it = maximum transferable points
65                 $total = countSumTotalData(getMemberId(), 'user_points', 'points')  - countSumTotalData(getMemberId(), 'user_data', 'used_points');
66
67                 // Remember maximum value for template
68                 $content['max_transferable'] = round($total - getConfig('transfer_balance') - 0.5);
69
70                 if (isFormSent()) {
71                         // Add new transfer
72                         if (getConfig('transfer_code') > 0) {
73                                 // Check for code
74                                 $code = generateRandomCode(getConfig('transfer_code'), postRequestParameter('code_chk'), getMemberId(), $content['max_transferable']);
75                                 $valid_code = ($code == postRequestParameter('code'));
76                         } else {
77                                 // Zero length (= disabled) is always valid!
78                                 $valid_code = true;
79                         }
80
81                         // Test password
82                         $valid_pass = ($pass == generateHash(postRequestParameter('password'), $pass));
83
84                         // Test transfer amount
85                         $valid_amount = ((isPostRequestParameterSet('points')) && (postRequestParameter('points') <= $content['max_transferable']));
86
87                         // Test reason for transfer
88                         $valid_reason = (isPostRequestParameterSet('reason'));
89
90                         // Test if a recipient is selected
91                         $valid_recipient = (postRequestParameter('to_userid') > 0);
92
93                         // Check for nickname extension and set additional data
94                         // @TODO Rewrite this to a filter
95                         $add = '';
96                         if (isExtensionActive('nickname')) {
97                                 $add = ', `nickname`';
98                         } // END - if
99
100                         // Re-check receivers and own personal data
101                         $result = SQL_QUERY_ESC("SELECT `userid`, `gender`, `surname`, `family`, `email`".$add." FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `userid` IN ('%s','%s') AND `status`='CONFIRMED' LIMIT 2",
102                                 array(
103                                         getMemberId(),
104                                         bigintval(postRequestParameter('to_userid'))
105                                 ), __FILE__, __LINE__);
106
107                         // Do we have two entries?
108                         $valid_data = (SQL_NUMROWS($result) == 2);
109
110                         // Final check if all is fine
111                         if ($valid_code && $valid_data && $valid_pass && $valid_amount && $valid_reason && $valid_recipient) {
112                                 // Let's start the transfer and load user data
113                                 $content['sender']    = SQL_FETCHARRAY($result);
114                                 $content['recipient'] = SQL_FETCHARRAY($result);
115
116                                 // Is the nickname extension not installed?
117                                 if (!isExtensionActive('nickname')) {
118                                         // Fix empty nicknames
119                                         $content['sender']['nickname']    = '';
120                                         $content['recipient']['nickname'] = '';
121                                 } // END - if
122
123                                 // Prepare variables for testing
124                                 $TEST_NICK_SENDER = $content['sender']['nickname'];
125                                 $TEST_NICK_REC    = $content['recipient']['nickname'];
126
127                                 // Default is userids for subject line
128                                 $SENDER = getMemberId();
129                                 $RECIPIENT = bigintval(postRequestParameter('to_userid'));
130
131                                 // If nickname is installed we can set the nickname
132                                 // @TODO Rewrite this to a filter
133                                 if (isExtensionActive('nickname')) {
134                                         if (($TEST_NICK_SENDER != getMemberId()) && (!empty($TEST_NICK_SENDER))) {
135                                                 $SENDER = $content['sender']['nickname'];
136                                         }
137
138                                         if (($TEST_NICK_REC != postRequestParameter('to_userid')) && (!empty($TEST_NICK_REC))) {
139                                                 $RECIPIENT = $content['recipient']['nickname'];
140                                         }
141                                 } // END - if
142
143                                 // Remember transfer reason and fancy date/time in constants
144                                 $content['reason']  = secureString(postRequestParameter('reason'));
145                                 $content['expires'] = createFancyTime(getConfig('transfer_age'));
146
147                                 // Generate tranafer id
148                                 $content['trans_id'] = bigintval(generateRandomCode('10', mt_rand(0, 99999), getMemberId(), postRequestParameter('reason')));
149
150                                 // Add entries to both tables
151                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_transfers_in` (`userid`, `from_userid`, `points`, `reason`, `time_trans`, `trans_id`) VALUES ('%s','%s','%s','%s', UNIX_TIMESTAMP(),'%s')",
152                                         array(bigintval(postRequestParameter('to_userid')), getMemberId(), bigintval(postRequestParameter('points')), postRequestParameter('reason'), $content['trans_id']), __FILE__, __LINE__);
153                                 SQL_QUERY_ESC("INSERT INTO `{?_MYSQL_PREFIX?}_user_transfers_out` (`userid`, `to_userid`, `points`, `reason`, `time_trans`, `trans_id`) VALUES ('%s','%s','%s','%s', UNIX_TIMESTAMP(),'%s')",
154                                         array(getMemberId(), bigintval(postRequestParameter('to_userid')), bigintval(postRequestParameter('points')), postRequestParameter('reason'), $content['trans_id']), __FILE__, __LINE__);
155
156                                 // Add points to account *directly* ...
157                                 addPointsDirectly('member_transfer', bigintval(postRequestParameter('to_userid')), bigintval(postRequestParameter('points')));
158
159                                 // ... and add it to current user's used points
160                                 subtractPoints('transfer', getMemberId(), postRequestParameter('points'));
161
162                                 // First send email to recipient
163                                 $message = loadEmailTemplate('member_transfer_recipient', $content, postRequestParameter('to_userid'));
164                                 sendEmail($content['recipient']['email'], '{--TRANSFER_MEMBER_RECIPIENT_SUBJECT--}' . ': ' . $SENDER, $message);
165
166                                 // Second send email to sender
167                                 $message = loadEmailTemplate('member_transfer_sender', $content, getMemberId());
168                                 sendEmail($content['sender']['email'], '{--TRANSFER_MEMBER_SENDER_SUBJECT--}' . ': ' . $RECIPIENT, $message);
169
170                                 // At last send admin mail(s)
171                                 $adminSubject = sprintf("%s (%s->%s)", '{--TRANSFER_ADMIN_SUBJECT--}', $SENDER, $RECIPIENT);
172                                 sendAdminNotification($adminSubject, 'admin_transfer_points', $content);
173
174                                 // Transfer is completed
175                                 loadTemplate('admin_settings_saved', false, '{--TRANSFER_COMPLETED--}' . '<br /><a href="{%url=modules.php?module=login&amp;what=transfer%}">{--TRANSFER_CONTINUE_OVERVIEW--}</a>');
176                         } elseif ($valid_code === false) {
177                                 // Invalid Touring code!
178                                 loadTemplate('admin_settings_saved', false, '<div class="member_note">{--TRANSFER_INVALID_CODE--}</div>');
179                                 unsetPostRequestParameter('ok');
180                         } elseif ($valid_pass === false) {
181                                 // Wrong password entered
182                                 loadTemplate('admin_settings_saved', false, '<div class="member_note">{--TRANSFER_INVALID_PASSWORD--}</div>');
183                                 unsetPostRequestParameter('ok');
184                         } elseif ($valid_amount === false) {
185                                 // Too much points entered
186                                 loadTemplate('admin_settings_saved', false, '<div class="member_note">{--TRANSFER_INVALID_POINTS--}</div>');
187                                 unsetPostRequestParameter('ok');
188                         } elseif ($valid_reason === false) {
189                                 // No transfer reason entered
190                                 loadTemplate('admin_settings_saved', false, '<div class="member_note">{--TRANSFER_INVALID_REASON--}</div>');
191                                 unsetPostRequestParameter('ok');
192                         } elseif ($valid_recipient === false) {
193                                 // No recipient selected
194                                 loadTemplate('admin_settings_saved', false, '<div class="member_note">{--TRANSFER_INVALID_RECIPIENT--}</div>');
195                                 unsetPostRequestParameter('ok');
196                         } elseif ($valid_data === false) {
197                                 // No recipient/sender selected
198                                 loadTemplate('admin_settings_saved', false, '<div class="member_note">{--TRANSFER_INVALID_DATA--}</div>');
199                                 unsetPostRequestParameter('ok');
200                         }
201
202                         // Free result
203                         SQL_FREERESULT($result);
204                 } // END - if
205
206                 if (!isFormSent()) {
207                         // Load member list
208                         if (isExtensionActive('nickname')) {
209                                 // Load userid and nickname
210                                 $result = SQL_QUERY_ESC("SELECT `userid`, `nickname` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `status`='CONFIRMED' AND `opt_in`='Y' AND `userid` != '%s' ORDER BY `userid` ASC",
211                                         array(getMemberId()), __FILE__, __LINE__);
212                         } else {
213                                 // Load only userid
214                                 $result = SQL_QUERY_ESC("SELECT `userid`, `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `status`='CONFIRMED' AND `opt_in`='Y' AND `userid` != '%s' ORDER BY `userid` ASC",
215                                         array(getMemberId()), __FILE__, __LINE__);
216                         }
217
218                         if (SQL_NUMROWS($result) > 0) {
219                                 // Load list
220                                 $OUT  = "<select name=\"to_userid\" size=\"1\" class=\"member_select\">
221         <option value=\"0\">{--SELECT_NONE--}</option>\n";
222                                 // @TODO Try to rewrite his to $content = SQL_FETCHARRAY(), see some lines above for two different queries
223                                 while (list($userid, $nick) = SQL_FETCHROW($result)) {
224                                         $OUT .= "       <option value=\"".$userid."\"";
225                                         if ((isPostRequestParameterSet(('to_userid'))) && (postRequestParameter('to_userid') == $userid)) $OUT .= ' selected="selected"';
226                                         $OUT .= ">";
227                                         if (($nick != $userid) && (!empty($nick))) {
228                                                 // Output nickname
229                                                 $OUT .= $nick;
230                                         } else {
231                                                 // Output userid
232                                                 $OUT .= $userid;
233                                         }
234                                         $OUT .= "</option>\n";
235                                 }
236                                 $OUT .= "</select>\n";
237                                 $content['to_disabled'] = '';
238
239                                 // Free memory
240                                 SQL_FREERESULT($result);
241                         } else {
242                                 // No one else is opt-in
243                                 $OUT = loadTemplate('admin_settings_saved', true, '{--TRANSFER_NO_ONE_ELSE_OPT_IN--}');
244                                 $content['to_disabled'] = ' disabled="disabled"';
245                         }
246
247                         // Transfer output to constant for the template
248                         $content['userid_selection'] = $OUT;
249
250                         // Generate Code
251                         if (getConfig('transfer_code') > 0) {
252                                 $rand = mt_rand(0, 99999);
253                                 $code = generateRandomCode(getConfig('transfer_code'), $rand, getMemberId(), $content['max_transferable']);
254                                 $img = generateImageOrCode($code, false);
255                                 $content['captcha_code'] = '<input type="hidden" name="code_chk" value="' . $rand . '" /><input type="text" name="code" class="member_normal" size="5" maxlength="7"' . $content['to_disabled'] . ' />&nbsp;' . $img;
256                         } else {
257                                 $code = '00000';
258                                 $content['captcha_code'] = loadTemplate('admin_settings_saved', true, '{--TRANSFER_NO_CODE--}');
259                         }
260
261                         // Init points/reason
262                         $content['points'] = '';
263                         $content['reason'] = '';
264
265                         // Transfer maybe already entered valued'
266                         if (isPostRequestParameterSet('ok')) {
267                                 // Get values from form
268                                 $content['points'] = postRequestParameter('points');
269                                 $content['reason'] = postRequestParameter('reason');
270                         } // END - if
271
272                         // Output form
273                         loadTemplate('member_transfer_new', false, $content);
274                 } // END - if
275                 break;
276
277         case 'list_in': // List only incoming transactions
278         case 'list_out': // List only outgoing transactions
279                 // As you can see I put list_in and list_out together. I now do a switch() again on it for the right SQL command
280                 $nothingMessage = '';
281                 switch ($mode) {
282                         case 'list_in':
283                                 $sql = "SELECT `trans_id`, `from_userid` AS party_userid, `points`, `reason`, `time_trans` FROM `{?_MYSQL_PREFIX?}_user_transfers_in` WHERE `userid`=%s ORDER BY `time_trans` DESC LIMIT {?transfer_max?}";
284                                 $nothingMessage     = '{--TRANSFER_NO_INCOMING_TRANSFERS--}';
285                                 $content['balance'] = '{--TRANSFER_TOTAL_INCOMING--}';
286                                 $content['title']   = '{--TRANSFER_LIST_INCOMING--}';
287                                 break;
288
289                         case 'list_out':
290                                 $sql = "SELECT `trans_id`, `to_userid` AS party_userid, `points`, `reason`, `time_trans` FROM `{?_MYSQL_PREFIX?}_user_transfers_out` WHERE `userid`=%s ORDER BY `time_trans` DESC LIMIT {?transfer_max?}";
291                                 $nothingMessage     = '{--TRANSFER_NO_OUTGOING_TRANSFERS--}';
292                                 $content['balance'] = '{--TRANSFER_TOTAL_OUTGOING--}';
293                                 $content['title']   = '{--TRANSFER_LIST_OUTGOING--}';
294                                 break;
295                 } // END - switch
296
297                 // Run the SQL command and set total points to zero
298                 $totalPoints = '0';
299                 $result = SQL_QUERY_ESC($sql, array(getMemberId()), __FILE__, __LINE__);
300
301                 // Do we have entries?
302                 if (SQL_NUMROWS($result) > 0) {
303                         $OUT = ''; $SW = 2;
304                         // @TODO This should be somehow rewritten to $row = SQL_FETCHARRAY(), see switch() block above for SQL queries
305                         while (list($tid, $userid, $points, $reason, $stamp) = SQL_FETCHROW($result)) {
306                                 // Rewrite points
307                                 if ($type == 'OUT') $points = $points . '-';
308
309                                 // Prepare content for template
310                                 // @TODO Rewrite: tid->trans_id,stamp->time_trans
311                                 $row = array(
312                                         'sw'       => $SW,
313                                         'trans_id' => $tid,
314                                         'stamp'    => generateDateTime($stamp, 3),
315                                         'userid'   => $userid,
316                                         'reason'   => $reason,
317                                         'points'   => $points
318                                 );
319
320                                 // Load row template
321                                 $OUT .= loadTemplate('member_transfer_row2', true, $row);
322
323                                 // Add points and switch color
324                                 $totalPoints += $points;
325                                 $SW = 3 - $SW;
326                         } // END - while
327
328                         // Free memory
329                         SQL_FREERESULT($result);
330                 } else {
331                         // Nothing for in or out
332                         $OUT = "<tr>
333   <td colspan=\"5\" align=\"center\" class=\"bottom\">
334     ".loadTemplate('admin_settings_saved', true, $nothingMessage)."
335   </td>
336 </tr>";
337                 }
338
339                 // ... and add them to a constant for the template
340                 $content['rows'] = $OUT;
341
342                 // Remeber total amount
343                 $content['total'] = translateComma($totalPoints);
344
345                 // Load final template
346                 loadTemplate('member_transfer_list', false, $content);
347                 break;
348
349         case 'list_all': // List all transactions
350                 // We fill a temporary table with data from both tables. This is much easier
351                 // to code and unstand by you as sub-SELECT queries. I know this is not the
352                 // fastest way but it shall be fine for now.
353                 //
354                 // First of all create the temporary table
355                 $result = SQL_QUERY("CREATE TEMPORARY TABLE `{?_MYSQL_PREFIX?}_transfers_tmp` (
356 `trans_id` VARCHAR(12) NOT NULL DEFAULT '',
357 `party_userid` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
358 `points` BIGINT(20) UNSIGNED NOT NULL DEFAULT 0,
359 `reason` VARCHAR(255) NOT NULL DEFAULT '',
360 `time_trans` VARCHAR(10) NOT NULL DEFAULT 0,
361 `trans_type` ENUM('IN','OUT') NOT NULL DEFAULT 'IN',
362 KEY (`party_userid`)
363 ) TYPE=HEAP", __FILE__, __LINE__);
364
365                 // Let's begin with the incoming list
366                 $result = SQL_QUERY_ESC("SELECT `trans_id`, `from_userid`, `points`, `reason`, `time_trans` FROM `{?_MYSQL_PREFIX?}_user_transfers_in` WHERE `userid`=%s ORDER BY `id` ASC LIMIT {?transfer_max?}",
367                         array(getMemberId()), __FILE__, __LINE__);
368                 while ($DATA = SQL_FETCHROW($result)) {
369                         $DATA[] = 'IN';
370                         $DATA = implode("','", $DATA);
371                         $res_temp = SQL_QUERY("INSERT INTO `{?_MYSQL_PREFIX?}_transfers_tmp` (`trans_id`, `party_userid`, `points`, `reason`, `time_trans`, `trans_type`) VALUES ('" . $DATA . "')", __FILE__, __LINE__);
372                 } // END - while
373
374                 // Free memory
375                 SQL_FREERESULT($result);
376
377                 // As the last table transfer data from outgoing table to temporary
378                 $result = SQL_QUERY_ESC("SELECT `trans_id`, `to_userid`, `points`, `reason`, `time_trans` FROM `{?_MYSQL_PREFIX?}_user_transfers_out` WHERE `userid`=%s ORDER BY `id` LIMIT {?transfer_max?}",
379                         array(getMemberId()), __FILE__, __LINE__);
380                 while ($DATA = SQL_FETCHROW($result)) {
381                         $DATA[] = 'OUT';
382                         $DATA = implode("','", $DATA);
383                         $res_temp = SQL_QUERY("INSERT INTO `{?_MYSQL_PREFIX?}_transfers_tmp` (`trans_id`, `party_userid`, `points`, `reason`, `time_trans`, `trans_type`) VALUES ('" . $DATA . "')", __FILE__, __LINE__);
384                 } // END - while
385
386                 // Free memory
387                 SQL_FREERESULT($result);
388
389                 $total = '0';
390                 if (SQL_NUMROWS($result) > 0) {
391                         // Search for entries
392                         $result = SQL_QUERY("SELECT `party_userid`, `trans_id`, `points`, `reason`, `time_trans`, `trans_type` FROM `{?_MYSQL_PREFIX?}_transfers_tmp` ORDER BY `time_trans` DESC",
393                                 __FILE__, __LINE__);
394
395                         // Output rows
396                         $OUT = ''; $SW = 2;
397                         while ($content = SQL_FETCHARRAY($result)) {
398                                 // Rewrite points
399                                 if ($content['trans_type'] == 'OUT') $content['points'] = '-'.$content['points']."";
400
401                                 // Prepare content for template
402                                 $content['sw']     = $SW;
403                                 $content['time']   = generateDateTime($content['time_trans'], 3);
404                                 $content['points'] = translateComma($content['points']);
405
406                                 // Load row template
407                                 $OUT .= loadTemplate('member_transfer_row', true, $content);
408
409                                 // Add points and switch color
410                                 $total += $content['points'];
411                                 $SW = 3 - $SW;
412                         } // END - while
413
414                         // Free memory
415                         SQL_FREERESULT($result);
416                 } else {
417                         // Nothing for in and out
418                         $OUT = '<tr>
419   <td colspan="5" align="center" class="bottom">
420     ' . loadTemplate('admin_settings_saved', true, '{--TRANSFER_NO_INOUT_TRANSFERS--}') . '
421   </td>
422 </tr>';
423                 }
424
425                 // ... and add them to a constant for the template
426                 $content['rows'] =  $OUT;
427
428                 // Remeber total amount
429                 $content['total'] = translateComma($total);
430
431                 // Set title
432                 $content['title'] = '{--TRANSFER_LIST_ALL--}';
433
434                 // Set "balance" word
435                 $content['balance'] = '{--TRANSFER_TOTAL_BALANCE--}';
436
437                 // At the end we don't need a temporary table in memory
438                 $result = SQL_QUERY("DROP TABLE IF EXISTS `{?_MYSQL_PREFIX?}_transfers_tmp`", __FILE__, __LINE__);
439
440                 // Load final template
441                 loadTemplate('member_transfer_list', false, $content);
442
443                 // Free some memory...
444                 SQL_FREERESULT($result);
445                 break;
446
447         default: // Overview page
448                 // Check incoming transfers
449                 $total = countSumTotalData(getMemberId(), 'user_transfers_in', 'id', 'userid', true);
450                 $content['in_link'] = $total;
451                 if ($total > 0) {
452                         $content['in_link'] = '<a href="{%url=modules.php?module=login&amp;what=transfer&amp;mode=list_in%}">' . $total . '</a>';
453                 } // END - if
454
455                 // Check outgoing transfers
456                 $dmy = countSumTotalData(getMemberId(), 'user_transfers_out', 'id', 'userid', true);
457
458                 // Add to total amount
459                 $total += $dmy;
460
461                 $content['out_link'] = $dmy;
462                 if ($dmy > 0) {
463                         $content['out_link'] = '<a href="{%url=modules.php?module=login&amp;what=transfer&amp;mode=list_out%}">' . $dmy . '</a>';
464                 } // END - if
465
466                 // Total transactions
467                 $content['all_link'] = $total;
468                 if ($total > 0) {
469                         $content['all_link'] = '<a href="{%url=modules.php?module=login&amp;what=transfer&amp;mode=list_all%}">' . $total . '</a>';
470                 } // END - if
471
472                 if (isFormSent()) {
473                         // Save settings
474                         SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `opt_in`='%s' WHERE `userid`=%s LIMIT 1",
475                                 array(postRequestParameter('opt_in'), getMemberId()), __FILE__, __LINE__);
476
477                         // "Settings saved..."
478                         loadTemplate('admin_settings_saved', false, '<div class="member_done">{--SETTINGS_SAVED--}</div>');
479                 } // END - if
480
481                 // Init entries
482                 foreach (array('allow_y','allow_n') as $entry) {
483                         $content[$entry] = '';
484                 } // END - foreach
485
486                 // Set current selection
487                 $content['allow_' . strtolower(getUserData('opt_in'))] = ' checked="checked"';
488
489                 // Set 'new transfer' link according to above option
490                 switch (getUserData('opt_in')) {
491                         case 'Y':
492                                 $content['new_link'] = '<a href="{%url=modules.php?module=login&amp;what=transfer&amp;mode=new%}" title="{--TRANSFER_NOW_TITLE--}">{--TRANSFER_NOW_LINK--}</a>';
493                                 break;
494
495                         case 'N':
496                                 $content['new_link'] = '{--TRANSFER_PLEASE_ALLOW_OPT_IN--}';
497                                 break;
498                 } // END - switch
499
500                 // Check for latest out-transfers
501                 $result = SQL_QUERY_ESC("SELECT
502         `time_trans`
503 FROM
504         `{?_MYSQL_PREFIX?}_user_transfers_out`
505 WHERE
506         `time_trans` > (UNIX_TIMESTAMP() - %s) AND `userid`=%s
507 ORDER BY
508         `time_trans` DESC
509 LIMIT 1",
510                         array(
511                                 getConfig('transfer_timeout'),
512                                 getMemberId()
513                         ), __FILE__, __LINE__);
514
515                 // Do we have an entry?
516                 if (SQL_NUMROWS($result) == 1) {
517                         // Load newest transaction
518                         list($newest) = SQL_FETCHROW($result);
519                         $content['settings'] = getMaskedMessage('TRANSFER_LATEST_IS', generateDateTime($newest, 3));
520                 } else {
521                         // Load template
522                         $content['settings'] = loadTemplate('member_transfer_settings', true, $content);
523                 }
524
525                 // Free result
526                 SQL_FREERESULT($result);
527
528                 // Load template
529                 loadTemplate('member_transfer_overview', false, $content);
530                 break;
531 } // END - switch
532
533 // [EOF]
534 ?>