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 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009, 2010 by Mailer Developer Team *
20 * For more information visit: http://www.mxchange.org *
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. *
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. *
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, *
36 ************************************************************************/
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
43 // Add description as navigation point
44 addMenuDescription('admin', __FILE__);
46 if (isFormSent('delete')) {
47 // Delete entries from tables
48 if (ifPostContainsSelections()) {
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));
61 runFilterChain('run_sqls');
65 // We only need outgoing transfers
66 $result = SQL_QUERY('SELECT
67 `userid` AS `from_userid`, `to_userid`, `trans_id`, `points`, `reason`, `time_trans`
69 `{?_MYSQL_PREFIX?}_user_transfers_out`
71 `trans_id` ASC', __FILE__, __LINE__);
74 if (!SQL_HASZERONUMS($result)) {
77 while ($content = SQL_FETCHARRAY($result)) {
78 // Prepare data for the row template
79 $content['time_trans'] = generateDateTime($content['time_trans'], 3);
82 $OUT .= loadTemplate('admin_delete_transfer_row', true, $content);
84 // Sum points and switch colors
85 $total += $content['points'];
89 SQL_FREERESULT($result);
91 // Nothing for in and out
93 <td colspan="6" align="center" class="bottom">
94 ' . loadTemplate('admin_settings_saved', true, '{--TRANSFER_NO_INOUT_TRANSFERS--}') . '
99 // ... and add them to a constant for the template
100 $content['rows'] = $OUT;
102 // Remeber total amount
103 $content['total'] = $total;
106 $content['title'] = '{--TRANSFER_LIST_ALL--}';
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--}" />';
112 // Load final template
113 loadTemplate('admin_list_transfer', false, $content);