Refback will be payed now (user cannot setup currently)
[mailer.git] / inc / modules / admin / what-list_primera.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 09/09/2008 *
4  * ================                             Last change: 09/09/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-list_primera.php                            *
8  * -------------------------------------------------------------------- *
9  * Short description : List member's primera 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 ((!defined('__SECURITY')) || (!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, primera_account, primera_amount, primera_timestamp, primera_type, primera_api_message, primera_api_status FROM "._MYSQL_PREFIX."_user_primera ORDER BY primera_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['primera_amount']              = TRANSLATE_COMMA($content['primera_amount']);
56                 $content['primera_timestamp']   = MAKE_DATETIME($content['primera_timestamp'], "2");
57                 $content['raw_type']                    = strtolower($content['primera_type']);
58                 $content['primera_type']                        = PRIMERA_TRANSFER_STATUS($content['primera_type']);
59
60                 // Append it and switch colors
61                 $OUT .= LOAD_TEMPLATE("admin_list_primera_row", true, $content);
62                 $SW = 3 - $SW;
63         }
64
65         // Load main template
66         LOAD_TEMPLATE("admin_list_primera_main", false, $OUT);
67 } else {
68         // Nothing to display!
69         LOAD_TEMPLATE("admin_settings_saved", false, PRIMERA_ADMIN_NO_TRANSFERS);
70 }
71
72 // Free the result
73 SQL_FREERESULT($result);
74
75 //
76 ?>