- Login failtures now counted and displayed after login in admin/member area
[mailer.git] / inc / modules / member / what-beg2.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 10/22/2005 *
4  * ===============                              Last change: 10/22/2005 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-beg2.php                                    *
8  * -------------------------------------------------------------------- *
9  * Short description : List all begging members                         *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Alle moeglichen Gewinner der Bettel-Rallye aufl. *
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']))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40  elseif (!IS_MEMBER())
41 {
42         LOAD_URL("modules.php[5~?module=index");
43 }
44  elseif ((!EXT_IS_ACTIVE("beg")) && (!IS_ADMIN()))
45 {
46         ADD_FATAL(EXTENSION_PROBLEM_EXT_INACTIVE, "beg");
47         return;
48 }
49
50 // Add description as navigation point
51 ADD_DESCR("member", basename(__FILE__));
52
53 // Autopurge installed?
54 $LAST = "%s"; $ONLINE = "";
55 if (EXT_IS_ACTIVE("autopurge"))
56 {
57         // Use last online timestamp to keep inactive members away from here
58         $LAST   = " AND last_online >= %s";
59         $ONLINE = bigintval(time() - $_CONFIG['ap_in_since']);
60 }
61
62 // Let's check if there are some points left we can "pay"...
63 $result = SQL_QUERY_ESC("SELECT userid, beg_points AS beg, last_online FROM "._MYSQL_PREFIX."_user_data
64 WHERE beg_points > 0 AND status='CONFIRMED'".$LAST."
65 ORDER BY beg_points DESC, last_online DESC, userid LIMIT %s",
66  array($ONLINE, $_CONFIG['beg_ranks']), __FILE__, __LINE__);
67
68 // Reset temporary variable and check for users
69 $OUT = "";
70 if (SQL_NUMROWS($result) > 0)
71 {
72         // Load our winners...
73         $SW = 2; $cnt = 1;
74         while(list($uid, $turbo, $last) = SQL_FETCHROW($result))
75         {
76                 // Prepare data for the template
77                 $content = array(
78                         'sw'     => $SW,
79                         'cnt'    => $cnt,
80                         'uid'    => bigintval($uid),
81                         'points' => TRANSLATE_COMMA($turbo),
82                         'last'   => MAKE_DATETIME($last, "2"),
83                 );
84
85                 // Load row template
86                 $OUT .= LOAD_TEMPLATE("member_list_beg_row", true, $content);
87
88                 // Count one up and switch colors
89                 $cnt++;$SW = 3 - $SW;
90         }
91 }
92  else
93 {
94         // No one is interested in our "active rallye" ! :-(
95         $OUT = LOAD_TEMPLATE("member_beg_404", true);
96 }
97
98 // Free memory
99 SQL_FREERESULT($result);
100
101 // Remeber row(s) for the template
102 define('__BEG_ROWS', $OUT);
103
104 // Load final template
105 LOAD_TEMPLATE("member_list_beg");
106
107 //
108 ?>