]> git.mxchange.org Git - mailer.git/blob - inc/modules/admin/what-del_transfer.php
2f3d8e8f060a4a294a8510217be3bae0208c1f9c
[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         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", __FILE__);
42
43 if (REQUEST_ISSET_POST('del')) {
44         // Delete entries from tables
45         $SEL = SELECTION_COUNT(REQUEST_POST('sel'));
46         if ($SEL > 0) {
47                 // Init SQLs
48                 INIT_SQLS();
49
50                 // Delete entries...
51                 foreach (REQUEST_POST('sel') as $id => $sel) {
52                         ADD_SQL(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_user_transfers_in` WHERE trans_id=%s LIMIT 1",
53                                 array(bigintval($id)), __FILE__, __LINE__, false));
54                         ADD_SQL(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{!_MYSQL_PREFIX!}_user_transfers_out` WHERE trans_id=%s LIMIT 1",
55                                 array(bigintval($id)), __FILE__, __LINE__, false));
56                 } // END - foreach
57
58                 // Run all SQLs
59                 runFilterChain('run_sqls');
60         }
61 }
62
63 // We only need outgoing transfers
64 $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__);
65 $total = 0;
66 if (SQL_NUMROWS($result) > 0) {
67         // Output rows
68         $OUT = ""; $SW = 2;
69         while ($content = SQL_FETCHARRAY($result)) {
70                 // Prepare data for the row template
71                 // @TODO Rewritings: idx->trans_id in template
72                 $content = array(
73                         'sw'       => $SW,
74                         'idx'      => $content['trans_id'],
75                         'stamp'    => MAKE_DATETIME($content['time_trans'], "3"),
76                         'uid_from' => ADMIN_USER_PROFILE_LINK($content['userid']),
77                         'uid_to'   => ADMIN_USER_PROFILE_LINK($content['to_uid']),
78                         'reason'   => $content['reason'],
79                         'points'   => TRANSLATE_COMMA($content['points']),
80                 );
81
82                 // Load row template
83                 $OUT .= LOAD_TEMPLATE("admin_del_transfer_row", true, $content);
84
85                 // Sum points and switch colors
86                 $total += $content['points']; $SW = 3 - $SW;
87         }
88
89         // Free memory
90         SQL_FREERESULT($result);
91 } else {
92         // Nothing for in and out
93         $OUT = "<tr>
94   <td colspan=\"6\" align=\"center\" class=\"bottom2\" height=\"70\">
95     ".LOAD_TEMPLATE("admin_settings_saved", true, getMessage('TRANSFER_NO_INOUT_TRANSFERS'))."
96   </td>
97 </tr>";
98 }
99
100 // ... and add them to a constant for the template
101 // @TODO Rewrite all these constants
102 define('__TRANSFER_ROWS', $OUT);
103
104 // Remeber total amount
105 define('__TRANSFER_TOTAL_VALUE', $total);
106
107 // Set title
108 define('__TRANSFER_TITLE', getMessage('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 ?>