71047387a7adf00f1ea8f4db35b81a550016f824
[mailer.git] / 0.2.1 / inc / modules / admin / what-del_transfer.php
1 <?php\r
2 /************************************************************************\r
3  * MXChange v0.2.1                                    Start: 10/07/2004 *\r
4  * ================                             Last change: 11/25/2004 *\r
5  *                                                                      *\r
6  * -------------------------------------------------------------------- *\r
7  * File              : what-del_transfer.php                            *\r
8  * -------------------------------------------------------------------- *\r
9  * Short description : Point transfers                                  *\r
10  * -------------------------------------------------------------------- *\r
11  * Kurzbeschreibung  : Punktetransfers                                  *\r
12  * -------------------------------------------------------------------- *\r
13  *                                                                      *\r
14  * -------------------------------------------------------------------- *\r
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
16  * For more information visit: http://www.mxchange.org                  *\r
17  *                                                                      *\r
18  * This program is free software; you can redistribute it and/or modify *\r
19  * it under the terms of the GNU General Public License as published by *\r
20  * the Free Software Foundation; either version 2 of the License, or    *\r
21  * (at your option) any later version.                                  *\r
22  *                                                                      *\r
23  * This program is distributed in the hope that it will be useful,      *\r
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
26  * GNU General Public License for more details.                         *\r
27  *                                                                      *\r
28  * You should have received a copy of the GNU General Public License    *\r
29  * along with this program; if not, write to the Free Software          *\r
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
31  * MA  02110-1301  USA                                                  *\r
32  ************************************************************************/\r
33 \r
34 // Some security stuff...\r
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']) || (!IS_ADMIN()))\r
36 {\r
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php";\r
38         require($INC);\r
39 }\r
40 \r
41 // Add description as navigation point\r
42 ADD_DESCR("admin", basename(__FILE__));\r
43 \r
44 if (isset($_POST['del']))\r
45 {\r
46         // Delete entries from tables\r
47         $SEL = SELECTION_COUNT($_POST['sel']);\r
48         if ($SEL > 0)\r
49         {\r
50                 // Delete entries...\r
51                 foreach ($_POST['sel'] as $id=>$sel)\r
52                 {\r
53                         $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_transfers_in WHERE trans_id=%d LIMIT 1",\r
54                          array(bigintval($id)), __FILE__, __LINE__);\r
55                         $result = SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM "._MYSQL_PREFIX."_user_transfers_out WHERE trans_id=%d LIMIT 1",\r
56                          array(bigintval($id)), __FILE__, __LINE__);\r
57                 }\r
58         }\r
59 }\r
60 \r
61 // We only need outgoing transfers\r
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__);\r
63 $total = "0";\r
64 if (SQL_NUMROWS($result) > 0)\r
65 {\r
66         // Output rows\r
67         $OUT = ""; $SW = 2;\r
68         while(list($uid1, $uid2, $idx, $points, $reason, $stamp) = SQL_FETCHROW($result))\r
69         {\r
70                 // Prepare data for the row template\r
71                 $content = array(\r
72                         'sw'       => $SW,\r
73                         'idx'      => $idx,\r
74                         'stamp'    => MAKE_DATETIME($stamp, "3"),\r
75                         'uid_from' => ADMIN_USER_PROFILE_LINK($uid1),\r
76                         'uid_to'   => ADMIN_USER_PROFILE_LINK($uid1),\r
77                         'reason'   => $reason,\r
78                         'points'   => TRANSLATE_COMMA($points),\r
79                 );\r
80 \r
81                 // Load row template\r
82                 $OUT .= LOAD_TEMPLATE("admin_del_transfer_row", true, $content);\r
83 \r
84                 // Sum points and switch colors\r
85                 $total += $points; $SW = 3 - $SW;\r
86         }\r
87 \r
88         // Free memory\r
89         SQL_FREERESULT($result);\r
90 }\r
91  else\r
92 {\r
93         // Nothing for in and out\r
94         $OUT = "<TR>\r
95   <TD colspan=\"6\" align=\"center\" class=\"bottom2\" height=\"70\">\r
96     ".LOAD_TEMPLATE("admin_settings_saved", true, TRANSFER_NO_INOUT_TRANSFERS)."\r
97   </TD>\r
98 </TR>";\r
99 }\r
100 \r
101 // ... and add them to a constant for the template\r
102 define('__TRANSFER_ROWS', $OUT);\r
103 \r
104 // Remeber total amount\r
105 define('__TRANSFER_TOTAL_VALUE', $total);\r
106 \r
107 // Set title\r
108 define('__TRANSFER_TITLE', TRANSFER_LIST_ALL);\r
109 \r
110 // Show delete button here\r
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."\">");\r
112 \r
113 // Load final template\r
114 LOAD_TEMPLATE("admin_list_transfer");\r
115 \r
116 //\r
117 ?>\r