f79486535763dca9d82560762c1b0dbc03792b1d
[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  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
45
46 if (isFormSent('delete')) {
47         // Delete entries from tables
48         if (ifPostContainsSelections()) {
49                 // Init SQLs
50                 initSqls();
51
52                 // Delete entries...
53                 foreach (postRequestParameter('sel') as $id => $sel) {
54                         addSql(SQL_QUERY_ESC('DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_transfers_in` WHERE `trans_id`=%s LIMIT 1',
55                                 array(bigintval($id)), __FILE__, __LINE__, false));
56                         addSql(SQL_QUERY_ESC('DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_transfers_out` WHERE `trans_id`=%s LIMIT 1',
57                                 array(bigintval($id)), __FILE__, __LINE__, false));
58                 } // END - foreach
59
60                 // Run all SQLs
61                 runFilterChain('run_sqls');
62         } // END - if
63 } // END - if
64
65 // We only need outgoing transfers
66 $result = SQL_QUERY('SELECT
67         `userid` AS `from_userid`, `to_userid`, `trans_id`, `points`, `reason`, `time_trans`
68 FROM
69         `{?_MYSQL_PREFIX?}_user_transfers_out`
70 ORDER BY
71         `trans_id` ASC', __FILE__, __LINE__);
72
73 $total = '0';
74 if (!SQL_HASZERONUMS($result)) {
75         // Output rows
76         $OUT = '';
77         while ($content = SQL_FETCHARRAY($result)) {
78                 // Prepare data for the row template
79                 $content['time_trans'] = generateDateTime($content['time_trans'], 3);
80
81                 // Load row template
82                 $OUT .= loadTemplate('admin_delete_transfer_row', true, $content);
83
84                 // Sum points and switch colors
85                 $total += $content['points'];
86         } // END - while
87
88         // Free memory
89         SQL_FREERESULT($result);
90 } else {
91         // Nothing for in and out
92         $OUT = '<tr>
93   <td colspan="6" align="center" class="bottom">
94     ' . loadTemplate('admin_settings_saved', true, '{--TRANSFER_NO_INOUT_TRANSFERS--}') . '
95   </td>
96 </tr>';
97 }
98
99 // ... and add them to a constant for the template
100 $content['rows'] = $OUT;
101
102 // Remeber total amount
103 $content['total'] = $total;
104
105 // Set title
106 $content['title'] = '{--TRANSFER_LIST_ALL--}';
107
108 // Show delete button here
109 $content['delete'] = '<input type="reset" class="form_reset" value="{--UNDO_SELECTIONS--}" />
110 <input type="submit" name="delete" class="form_delete" value="{--TRANSFER_DELETE--}" />';
111
112 // Load final template
113 loadTemplate('admin_list_transfer', false, $content);
114
115 // [EOF]
116 ?>