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']), ); // Load row template add points and switch color $OUT .= LOAD_TEMPLATE("admin_list_transfer_row", true, $content); $total += $content['points']; $SW = 3 - $SW; } // Free memory SQL_FREERESULT($result); } else { // Nothing for in and out $OUT = " ".LOAD_TEMPLATE("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); // Remeber total amount define('__TRANSFER_TOTAL_VALUE', TRANSLATE_COMMA($total)); // Set title define('__TRANSFER_TITLE', getMessage('TRANSFER_LIST_ALL')); // Set "balance" word define('__TRANSFER_SUM', getMessage('TRANSFER_TOTAL_BALANCE')); // Don't show a delete button define('__TRANSFER_DELETE', " "); // Load final template LOAD_TEMPLATE("admin_list_transfer"); // ?>