Refback will be payed now (user cannot setup currently)
[mailer.git] / inc / modules / admin / what-list_transfer.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/07/2004 *
4  * ================                             Last change: 10/14/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_transfer.php                           *
8  * -------------------------------------------------------------------- *
9  * Short description : Point transfers                                  *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Punktetransfers                                  *
12  * -------------------------------------------------------------------- *
13  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']) || (!IS_ADMIN()))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40
41 // Add description as navigation point
42 ADD_DESCR("admin", basename(__FILE__));
43
44 // We only need outgoing transfers
45 $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__);
46 $total = 0;
47 if (SQL_NUMROWS($result) > 0)
48 {
49         // Output rows
50         $OUT = ""; $SW = 2;
51         while(list($uid1, $uid2, $idx, $points, $reason, $stamp) = SQL_FETCHROW($result))
52         {
53                 // Prepare data for the row template
54                 $content = array(
55                         'sw'        => $SW,
56                         'idx'       => $idx,
57                         'stamp'     => MAKE_DATETIME($stamp, "3"),
58                         'from_link' => ADMIN_USER_PROFILE_LINK($uid1),
59                         'to_link'   => ADMIN_USER_PROFILE_LINK($uid2),
60                         'reason'    => wordwrap($reason, 15),
61                         'points'    => TRANSLATE_COMMA($points),
62                 );
63
64                 // Load row template add points and switch color
65                 $OUT .= LOAD_TEMPLATE("admin_list_transfer_row", true, $content);
66                 $total += $points; $SW = 3 - $SW;
67         }
68
69         // Free memory
70         SQL_FREERESULT($result);
71 }
72  else
73 {
74         // Nothing for in and out
75         $OUT = "<TR>
76   <TD colspan=\"6\" align=\"center\" class=\"bottom2\" height=\"70\">
77     ".LOAD_TEMPLATE("admin_settings_saved", true, TRANSFER_NO_INOUT_TRANSFERS)."
78   </TD>
79 </TR>";
80 }
81
82 // ... and add them to a constant for the template
83 define('__TRANSFER_ROWS', $OUT);
84
85 // Remeber total amount
86 define('__TRANSFER_TOTAL_VALUE', TRANSLATE_COMMA($total));
87
88 // Set title
89 define('__TRANSFER_TITLE', TRANSFER_LIST_ALL);
90
91 // Set "balance" word
92 define('__TRANSFER_SUM', TRANSFER_TOTAL_BALANCE);
93
94 // Don't show a delete button
95 define('__TRANSFER_DELETE', "&nbsp;");
96
97 // Load final template
98 LOAD_TEMPLATE("admin_list_transfer");
99
100 //
101 ?>