cf796793212c49c90d5c8c0b7ad6356ed91481a4
[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 - 2009 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 ((!defined('__SECURITY')) || (!isAdmin())) {
41         die();
42 }
43
44 // Add description as navigation point
45 addMenuDescription('admin', __FILE__);
46
47 if (isPostRequestElementSet('del')) {
48         // Delete entries from tables
49         $SEL = countPostSelection();
50         if ($SEL > 0) {
51                 // Init SQLs
52                 initSqls();
53
54                 // Delete entries...
55                 foreach (postRequestElement('sel') as $id => $sel) {
56                         addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_transfers_in` WHERE trans_id=%s LIMIT 1",
57                         array(bigintval($id)), __FILE__, __LINE__, false));
58                         addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_transfers_out` WHERE trans_id=%s LIMIT 1",
59                         array(bigintval($id)), __FILE__, __LINE__, false));
60                 } // END - foreach
61
62                 // Run all SQLs
63                 runFilterChain('run_sqls');
64         }
65 }
66
67 // We only need outgoing transfers
68 $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__);
69 $total = 0;
70 if (SQL_NUMROWS($result) > 0) {
71         // Output rows
72         $OUT = ''; $SW = 2;
73         while ($content = SQL_FETCHARRAY($result)) {
74                 // Prepare data for the row template
75                 $content = array(
76                         'sw'          => $SW,
77                         'trans_id'    => $content['trans_id'],
78                         'stamp'       => generateDateTime($content['time_trans'], '3'),
79                         'userid_from' => generateUserProfileLink($content['userid']),
80                         'userid_to'   => generateUserProfileLink($content['to_userid']),
81                         'reason'      => $content['reason'],
82                         'points'      => translateComma($content['points']),
83                 );
84
85                 // Load row template
86                 $OUT .= loadTemplate('admin_del_transfer_row', true, $content);
87
88                 // Sum points and switch colors
89                 $total += $content['points']; $SW = 3 - $SW;
90         }
91
92         // Free memory
93         SQL_FREERESULT($result);
94 } else {
95         // Nothing for in and out
96         $OUT = "<tr>
97   <td colspan=\"6\" align=\"center\" class=\"bottom2\" height=\"70\">
98     ".loadTemplate('admin_settings_saved', true, getMessage('TRANSFER_NO_INOUT_TRANSFERS'))."
99   </td>
100 </tr>";
101 }
102
103 // ... and add them to a constant for the template
104 $content['rows'] = $OUT;
105
106 // Remeber total amount
107 $content['total'] = translateComma($total);
108
109 // Set title
110 $content['title'] = getMessage('TRANSFER_LIST_ALL');
111
112 // Show delete button here
113 $content['delete'] = "<input type=\"reset\" class=\"admin_reset\" value=\"{--UNDO_SELECTIONS--}\" />&nbsp;*&nbsp;<input type=\"submit\" name=\"del\" class=\"admin_delete\" value=\"{--TRANSFER_DELETE--}\" />";
114
115 // Load final template
116 loadTemplate('admin_list_transfer', false, $content);
117
118 // [EOF]
119 ?>