X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_transfer.php;h=677be3706ab5020b0059ce1b0084d4f4f5f7c210;hp=7062faf6614e5337afeb42385099826e3ddc4667;hb=57227d33e870ec5cd271209c4a978a52b45c2dd6;hpb=a090e351c49fe021fb3064325694da03402332e0 diff --git a/inc/modules/admin/what-list_transfer.php b/inc/modules/admin/what-list_transfer.php index 7062faf661..677be3706a 100644 --- a/inc/modules/admin/what-list_transfer.php +++ b/inc/modules/admin/what-list_transfer.php @@ -1,7 +1,7 @@ 0) -{ +$result = SQL_QUERY("SELECT userid, to_userid, trans_id, points, reason, time_trans FROM `{?_MYSQL_PREFIX?}_user_transfers_out` ORDER BY trans_id", __FILE__, __LINE__); +$total = '0'; +if (SQL_NUMROWS($result) > 0) { // Output rows $OUT = ''; $SW = 2; while ($content = SQL_FETCHARRAY($result)) { // Prepare data for the row template $content = array( - 'sw' => $SW, - 'idx' => $content['trans_id'], - 'stamp' => MAKE_DATETIME($content['time_trans'], "3"), - 'from_link' => ADMIN_USER_PROFILE_LINK($content['userid']), - 'to_link' => ADMIN_USER_PROFILE_LINK($content['to_uid']), - 'reason' => wordwrap($content['reason'], 15), - 'points' => TRANSLATE_COMMA($content['points']), + 'sw' => $SW, + 'trans_id' => $content['trans_id'], + 'time_trans' => generateDateTime($content['time_trans'], 3), + 'from_link' => generateUserProfileLink($content['userid']), + 'to_link' => generateUserProfileLink($content['to_userid']), + 'reason' => wordwrap($content['reason'], 15), + 'points' => translateComma($content['points']), ); // Load row template add points and switch color - $OUT .= LOAD_TEMPLATE("admin_list_transfer_row", true, $content); + $OUT .= loadTemplate('admin_list_transfer_row', true, $content); $total += $content['points']; $SW = 3 - $SW; } // Free memory SQL_FREERESULT($result); -} - else -{ +} else { // Nothing for in and out $OUT = " - - ".LOAD_TEMPLATE('admin_settings_saved', true, getMessage('TRANSFER_NO_INOUT_TRANSFERS'))." + + ".loadTemplate('admin_settings_saved', true, getMessage('TRANSFER_NO_INOUT_TRANSFERS'))." "; } // ... and add them to a constant for the template -// @TODO Rewrite these constants -define('__TRANSFER_ROWS', $OUT); +$content['rows'] = $OUT; // Remeber total amount -define('__TRANSFER_TOTAL_VALUE', TRANSLATE_COMMA($total)); +$content['total'] = translateComma($total); // Set title -define('__TRANSFER_TITLE', getMessage('TRANSFER_LIST_ALL')); +$content['title'] = getMessage('TRANSFER_LIST_ALL'); // Set "balance" word -define('__TRANSFER_SUM', getMessage('TRANSFER_TOTAL_BALANCE')); +$content['balance'] = getMessage('TRANSFER_TOTAL_BALANCE'); // Don't show a delete button -define('__TRANSFER_DELETE', " "); +$content['delete'] = ' '; // Load final template -LOAD_TEMPLATE("admin_list_transfer"); +loadTemplate('admin_list_transfer', false, $content); -// +// [EOF] ?>