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