X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_transfer.php;h=339b5bbad8651f2f14c27f4ac79ac680de271e43;hp=ee8319497dc649caac2177ddaedb9e446134e161;hb=0f3a135204757cc8750262871c8e62c42300acb4;hpb=cca98f57dff720b174d21d071cee8303462485d7 diff --git a/inc/modules/admin/what-list_transfer.php b/inc/modules/admin/what-list_transfer.php index ee8319497d..339b5bbad8 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` AS `from_userid`,`to_userid`,`trans_id`,`points`,`reason`,`time_trans` +FROM + `{?_MYSQL_PREFIX?}_user_transfers_out` +ORDER BY + `trans_id` ASC', __FILE__, __LINE__); + +$total = '0'; +if (!SQL_HASZERONUMS($result)) { // Output rows - $OUT = ""; $SW = 2; - while(list($uid1, $uid2, $idx, $points, $reason, $stamp) = SQL_FETCHROW($result)) - { + $OUT = ''; + while ($content = SQL_FETCHARRAY($result)) { // Prepare data for the row template - $content = array( - 'sw' => $SW, - 'idx' => $idx, - 'stamp' => MAKE_DATETIME($stamp, "3"), - 'from_link' => ADMIN_USER_PROFILE_LINK($uid1), - 'to_link' => ADMIN_USER_PROFILE_LINK($uid2), - 'reason' => wordwrap($reason, 15), - 'points' => TRANSLATE_COMMA($points), - ); + $content['time_trans'] = generateDateTime($content['time_trans'], 3); + $content['reason'] = wordwrap($content['reason'], 15); // Load row template add points and switch color - $OUT .= LOAD_TEMPLATE("admin_list_transfer_row", true, $content); - $total += $points; $SW = 3 - $SW; - } + $OUT .= loadTemplate('admin_list_transfer_row', true, $content); + $total += $content['points']; + } // END - while // Free memory SQL_FREERESULT($result); -} - else -{ +} else { // Nothing for in and out - $OUT = " - - ".LOAD_TEMPLATE("admin_settings_saved", true, TRANSFER_NO_INOUT_TRANSFERS)." + $OUT = ' + + ' . displayMessage('{--TRANSFER_NO_INOUT_TRANSFERS--}', true) . ' -"; +'; } // ... and add them to a constant for the template -define('__TRANSFER_ROWS', $OUT); +$content['rows'] = $OUT; // Remeber total amount -define('__TRANSFER_TOTAL_VALUE', TRANSLATE_COMMA($total)); +$content['total_points'] = $total; // Set title -define('__TRANSFER_TITLE', TRANSFER_LIST_ALL); +$content['title'] = '{--TRANSFER_LIST_ALL--}'; // Set "balance" word -define('__TRANSFER_SUM', TRANSFER_TOTAL_BALANCE); +$content['balance'] = '{--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] ?>