Extension ext-earning introduced (unfinished), renamings:
[mailer.git] / inc / modules / admin / what-list_transfer.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/07/2004 *
4  * ===================                          Last change: 10/14/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_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 // We only need outgoing transfers
47 $result = SQL_QUERY('SELECT
48         `userid` AS `from_userid`,`to_userid`,`trans_id`,`points`,`reason`,`time_trans`
49 FROM
50         `{?_MYSQL_PREFIX?}_user_transfers_out`
51 ORDER BY
52         `trans_id` ASC', __FILE__, __LINE__);
53
54 $total = '0';
55 if (!SQL_HASZERONUMS($result)) {
56         // Output rows
57         $OUT = '';
58         while ($content = SQL_FETCHARRAY($result)) {
59                 // Prepare data for the row template
60                 $content['time_trans']  = generateDateTime($content['time_trans'], 3);
61                 $content['reason']      = wordwrap($content['reason'], 15);
62
63                 // Load row template add points and switch color
64                 $OUT .= loadTemplate('admin_list_transfer_row', true, $content);
65                 $total += $content['points'];
66         } // END - while
67
68         // Free memory
69         SQL_FREERESULT($result);
70 } else {
71         // Nothing for in and out
72         $OUT = '<tr>
73   <td colspan="6" align="center" class="bottom">
74     ' . displayMessage('{--TRANSFER_NO_INOUT_TRANSFERS--}', true) . '
75   </td>
76 </tr>';
77 }
78
79 // ... and add them to a constant for the template
80 $content['rows'] = $OUT;
81
82 // Remeber total amount
83 $content['total_points'] = $total;
84
85 // Set title
86 $content['title'] = '{--TRANSFER_LIST_ALL--}';
87
88 // Set "balance" word
89 $content['balance'] = '{--TRANSFER_TOTAL_BALANCE--}';
90
91 // Don't show a delete button
92 $content['delete'] = '&nbsp;';
93
94 // Load final template
95 loadTemplate('admin_list_transfer', false, $content);
96
97 // [EOF]
98 ?>