Wernis extension fixed
[mailer.git] / inc / modules / admin / what-list_wernis.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 26/12/2007 *
4  * ================                             Last change: 26/12/2007 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_wernis.php                             *
8  * -------------------------------------------------------------------- *
9  * Short description : List member's wernis requests                    *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Auflistung der Wernis-Anfragen                   *
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", basename(__FILE__));
42
43 // Check for entries
44 $result = SQL_QUERY("SELECT id, userid, wernis_account, wernis_amount, wernis_timestamp, wernis_type, wernis_api_message, wernis_api_status FROM "._MYSQL_PREFIX."_user_wernis ORDER BY wernis_timestamp DESC, id DESC",
45         __FILE__, __LINE__);
46
47 // Are there some entries to display?
48 if (SQL_NUMROWS($result) > 0) {
49         // List all entries
50         $OUT = ""; $SW = 2;
51         while ($content = SQL_FETCHARRAY($result)) {
52                 // Translate some data and add color
53                 $content['sw']                                  = $SW;
54                 $content['link']                                = ADMIN_USER_PROFILE_LINK($content['userid']);
55                 $content['wernis_amount']               = TRANSLATE_COMMA($content['wernis_amount']);
56                 $content['wernis_timestamp']    = MAKE_DATETIME($content['wernis_timestamp'], "2");
57                 $content['raw_type']                    = strtolower($content['wernis_type']);
58                 $content['wernis_type']                 = WERNIS_TRANSFER_STATUS($content['wernis_type']);
59
60                 // Append it and switch colors
61                 $OUT .= LOAD_TEMPLATE("admin_list_wernis_row", true, $content);
62                 $SW = 3 - $SW;
63         }
64
65         // Load main template
66         LOAD_TEMPLATE("admin_list_wernis_main", false, $OUT);
67 } else {
68         // Nothing to display!
69         LOAD_TEMPLATE("admin_settings_saved", false, WERNIS_ADMIN_NO_TRANSFERS);
70 }
71
72 // Free the result
73 SQL_FREERESULT($result);
74
75 //
76 ?>