X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-list_transfer.php;h=a8458870004dffe3eee2cf9932b9183801759d67;hb=7fabfadce30a7bea7ce3ad1f1e2e7e5e616f2669;hp=ebc093d67edc4768891d4b28053fe3a205ed1bb4;hpb=e01fcf1ca8ddeb72af76465df3ef72301a1cdae7;p=mailer.git diff --git a/inc/modules/admin/what-list_transfer.php b/inc/modules/admin/what-list_transfer.php index ebc093d67e..a845887000 100644 --- a/inc/modules/admin/what-list_transfer.php +++ b/inc/modules/admin/what-list_transfer.php @@ -10,14 +10,14 @@ * -------------------------------------------------------------------- * * Kurzbeschreibung : Punktetransfers * * -------------------------------------------------------------------- * - * $Revision:: 856 $ * - * $Date:: 2009-03-06 20:24:32 +0100 (Fr, 06. March 2009) $ * + * $Revision:: $ * + * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * - * $Author:: stelzi $ * + * $Author:: $ * * Needs to be in all Files and every File needs "svn propset * * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * - * Copyright (c) 2003 - 2008 by Roland Haeder * + * Copyright (c) 2003 - 2009 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -37,69 +37,64 @@ ************************************************************************/ // Some security stuff... -if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']) || (!IS_ADMIN())) { - $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php"; - require($INC); -} +if ((!defined('__SECURITY')) || (!isAdmin())) { + die(); +} // END - if // Add description as navigation point -ADD_DESCR("admin", __FILE__); +addMenuDescription('admin', __FILE__); // We only need outgoing transfers -$result = SQL_QUERY("SELECT userid, to_uid, trans_id, points, reason, time_trans FROM `{!_MYSQL_PREFIX!}_user_transfers_out` ORDER BY trans_id", __FILE__, __LINE__); +$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) -{ +if (SQL_NUMROWS($result) > 0) { // Output rows - $OUT = ""; $SW = 2; + $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']), + 'trans_id' => $content['trans_id'], + 'stamp' => generateDateTime($content['time_trans'], '3'), + 'from_link' => generateUserProfileLink($content['userid']), + 'to_link' => generateUserProfileLink($content['to_userid']), 'reason' => wordwrap($content['reason'], 15), - 'points' => TRANSLATE_COMMA($content['points']), + '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] ?>