Encapsulation and fixes:
[mailer.git] / inc / modules / admin / what-del_transfer.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if ((!defined('__SECURITY')) || (!isAdmin())) {
42         die();
43 }
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 if (isFormSent('del')) {
49         // Delete entries from tables
50         if (countPostSelection() > 0) {
51                 // Init SQLs
52                 initSqls();
53
54                 // Delete entries...
55                 foreach (postRequestParameter('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         } // END - if
65 } // END - if
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` ASC", __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                         'time_trans'  => 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         } // END - while
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=\"bottom\">
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--}" />
114 <input type="submit" name="del" class="admin_delete" value="{--TRANSFER_DELETE--}" />';
115
116 // Load final template
117 loadTemplate('admin_list_transfer', false, $content);
118
119 // [EOF]
120 ?>