Heavy rewrite:
[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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']) || (!IS_ADMIN())) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 }
44
45 // Add description as navigation point
46 ADD_DESCR('admin', __FILE__);
47
48 // We only need outgoing transfers
49 $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__);
50 $total = 0;
51 if (SQL_NUMROWS($result) > 0) {
52         // Output rows
53         $OUT = ''; $SW = 2;
54         while ($content = SQL_FETCHARRAY($result)) {
55                 // Prepare data for the row template
56                 $content = array(
57                         'sw'        => $SW,
58                         'idx'       => $content['trans_id'],
59                         'stamp'     => generateDateTime($content['time_trans'], '3'),
60                         'from_link' => generateUserProfileLink($content['userid']),
61                         'to_link'   => generateUserProfileLink($content['to_uid']),
62                         'reason'    => wordwrap($content['reason'], 15),
63                         'points'    => translateComma($content['points']),
64                 );
65
66                 // Load row template add points and switch color
67                 $OUT .= LOAD_TEMPLATE('admin_list_transfer_row', true, $content);
68                 $total += $content['points']; $SW = 3 - $SW;
69         }
70
71         // Free memory
72         SQL_FREERESULT($result);
73 } else {
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, getMessage('TRANSFER_NO_INOUT_TRANSFERS'))."
78   </td>
79 </tr>";
80 }
81
82 // ... and add them to a constant for the template
83 // @TODO Rewrite these constants
84 define('__TRANSFER_ROWS', $OUT);
85
86 // Remeber total amount
87 define('__TRANSFER_TOTAL_VALUE', translateComma($total));
88
89 // Set title
90 define('__TRANSFER_TITLE', getMessage('TRANSFER_LIST_ALL'));
91
92 // Set "balance" word
93 define('__TRANSFER_SUM', getMessage('TRANSFER_TOTAL_BALANCE'));
94
95 // Don't show a delete button
96 define('__TRANSFER_DELETE', '&nbsp;');
97
98 // Load final template
99 LOAD_TEMPLATE('admin_list_transfer');
100
101 //
102 ?>