config.php partly solved, see #117
[mailer.git] / inc / modules / admin / what-del_transfer.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/07/2004 *
4  * ================                             Last change: 11/25/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-del_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 if (REQUEST_ISSET_POST('del')) {
49         // Delete entries from tables
50         $SEL = countPostSelection();
51         if ($SEL > 0) {
52                 // Init SQLs
53                 INIT_SQLS();
54
55                 // Delete entries...
56                 foreach (REQUEST_POST('sel') as $id => $sel) {
57                         ADD_SQL(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_user_transfers_in` WHERE trans_id=%s LIMIT 1",
58                                 array(bigintval($id)), __FILE__, __LINE__, false));
59                         ADD_SQL(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_user_transfers_out` WHERE trans_id=%s LIMIT 1",
60                                 array(bigintval($id)), __FILE__, __LINE__, false));
61                 } // END - foreach
62
63                 // Run all SQLs
64                 runFilterChain('run_sqls');
65         }
66 }
67
68 // We only need outgoing transfers
69 $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__);
70 $total = 0;
71 if (SQL_NUMROWS($result) > 0) {
72         // Output rows
73         $OUT = ''; $SW = 2;
74         while ($content = SQL_FETCHARRAY($result)) {
75                 // Prepare data for the row template
76                 // @TODO Rewritings: idx->trans_id in template
77                 $content = array(
78                         'sw'       => $SW,
79                         'idx'      => $content['trans_id'],
80                         'stamp'    => generateDateTime($content['time_trans'], '3'),
81                         'uid_from' => generateUserProfileLink($content['userid']),
82                         'uid_to'   => generateUserProfileLink($content['to_uid']),
83                         'reason'   => $content['reason'],
84                         'points'   => translateComma($content['points']),
85                 );
86
87                 // Load row template
88                 $OUT .= LOAD_TEMPLATE("admin_del_transfer_row", true, $content);
89
90                 // Sum points and switch colors
91                 $total += $content['points']; $SW = 3 - $SW;
92         }
93
94         // Free memory
95         SQL_FREERESULT($result);
96 } else {
97         // Nothing for in and out
98         $OUT = "<tr>
99   <td colspan=\"6\" align=\"center\" class=\"bottom2\" height=\"70\">
100     ".LOAD_TEMPLATE('admin_settings_saved', true, getMessage('TRANSFER_NO_INOUT_TRANSFERS'))."
101   </td>
102 </tr>";
103 }
104
105 // ... and add them to a constant for the template
106 // @TODO Rewrite all these constants
107 define('__TRANSFER_ROWS', $OUT);
108
109 // Remeber total amount
110 define('__TRANSFER_TOTAL_VALUE', $total);
111
112 // Set title
113 define('__TRANSFER_TITLE', getMessage('TRANSFER_LIST_ALL'));
114
115 // Show delete button here
116 define('__TRANSFER_DELETE', "<input type=\"reset\" class=\"admin_reset\" value=\"{--UNDO_SELECTIONS--}\" />&nbsp;*&nbsp;<input type=\"submit\" name=\"del\" class=\"admin_delete\" value=\"{--TRANSFER_DELETE--}\" />");
117
118 // Load final template
119 LOAD_TEMPLATE("admin_list_transfer");
120
121 //
122 ?>