2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 10/07/2004 *
4 * ================ Last change: 11/25/2004 *
6 * -------------------------------------------------------------------- *
7 * File : what-del_transfer.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Point transfers *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Punktetransfers *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 *
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. *
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. *
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, *
37 ************************************************************************/
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!isAdmin())) {
44 // Add description as navigation point
45 addMenuDescription('admin', __FILE__);
47 if (isPostRequestElementSet('del')) {
48 // Delete entries from tables
49 if (countPostSelection() > 0) {
54 foreach (postRequestElement('sel') as $id => $sel) {
55 addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_transfers_in` WHERE `trans_id`=%s LIMIT 1",
56 array(bigintval($id)), __FILE__, __LINE__, false));
57 addSql(SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_user_transfers_out` WHERE `trans_id`=%s LIMIT 1",
58 array(bigintval($id)), __FILE__, __LINE__, false));
62 runFilterChain('run_sqls');
66 // We only need outgoing transfers
67 $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 if (SQL_NUMROWS($result) > 0) {
72 while ($content = SQL_FETCHARRAY($result)) {
73 // Prepare data for the row template
76 'trans_id' => $content['trans_id'],
77 'time_trans' => generateDateTime($content['time_trans'], 3),
78 'userid_from' => generateUserProfileLink($content['userid']),
79 'userid_to' => generateUserProfileLink($content['to_userid']),
80 'reason' => $content['reason'],
81 'points' => translateComma($content['points']),
85 $OUT .= loadTemplate('admin_del_transfer_row', true, $content);
87 // Sum points and switch colors
88 $total += $content['points']; $SW = 3 - $SW;
92 SQL_FREERESULT($result);
94 // Nothing for in and out
96 <td colspan=\"6\" align=\"center\" class=\"bottom2\">
97 ".loadTemplate('admin_settings_saved', true, getMessage('TRANSFER_NO_INOUT_TRANSFERS'))."
102 // ... and add them to a constant for the template
103 $content['rows'] = $OUT;
105 // Remeber total amount
106 $content['total'] = translateComma($total);
109 $content['title'] = getMessage('TRANSFER_LIST_ALL');
111 // Show delete button here
112 $content['delete'] = "<input type=\"reset\" class=\"admin_reset\" value=\"{--UNDO_SELECTIONS--}\" /> * <input type=\"submit\" name=\"del\" class=\"admin_delete\" value=\"{--TRANSFER_DELETE--}\" />";
114 // Load final template
115 loadTemplate('admin_list_transfer', false, $content);