Another column fix
[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  *                                                                      *
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 if (isset($_POST['del']))
45 {
46         // Delete entries from tables
47         $SEL = SELECTION_COUNT($_POST['sel']);
48         if ($SEL > 0)
49         {
50                 // Delete entries...
51                 foreach ($_POST['sel'] as $id => $sel)
52                 {
53                         $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_transfers_in WHERE trans_id=%s LIMIT 1",
54                          array(bigintval($id)), __FILE__, __LINE__);
55                         $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_transfers_out WHERE trans_id=%s LIMIT 1",
56                          array(bigintval($id)), __FILE__, __LINE__);
57                 }
58         }
59 }
60
61 // We only need outgoing transfers
62 $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__);
63 $total = 0;
64 if (SQL_NUMROWS($result) > 0)
65 {
66         // Output rows
67         $OUT = ""; $SW = 2;
68         while(list($uid1, $uid2, $idx, $points, $reason, $stamp) = SQL_FETCHROW($result))
69         {
70                 // Prepare data for the row template
71                 $content = array(
72                         'sw'       => $SW,
73                         'idx'      => $idx,
74                         'stamp'    => MAKE_DATETIME($stamp, "3"),
75                         'uid_from' => ADMIN_USER_PROFILE_LINK($uid1),
76                         'uid_to'   => ADMIN_USER_PROFILE_LINK($uid1),
77                         'reason'   => $reason,
78                         'points'   => TRANSLATE_COMMA($points),
79                 );
80
81                 // Load row template
82                 $OUT .= LOAD_TEMPLATE("admin_del_transfer_row", true, $content);
83
84                 // Sum points and switch colors
85                 $total += $points; $SW = 3 - $SW;
86         }
87
88         // Free memory
89         SQL_FREERESULT($result);
90 }
91  else
92 {
93         // Nothing for in and out
94         $OUT = "<TR>
95   <TD colspan=\"6\" align=\"center\" class=\"bottom2\" height=\"70\">
96     ".LOAD_TEMPLATE("admin_settings_saved", true, TRANSFER_NO_INOUT_TRANSFERS)."
97   </TD>
98 </TR>";
99 }
100
101 // ... and add them to a constant for the template
102 define('__TRANSFER_ROWS', $OUT);
103
104 // Remeber total amount
105 define('__TRANSFER_TOTAL_VALUE', $total);
106
107 // Set title
108 define('__TRANSFER_TITLE', TRANSFER_LIST_ALL);
109
110 // Show delete button here
111 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."\">");
112
113 // Load final template
114 LOAD_TEMPLATE("admin_list_transfer");
115
116 //
117 ?>