a681c7fa0b13df5b52a6fbc9fa2ee9e634aa4a19
[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  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), '/inc') + 4) . '/security.php';
42         require($INC);
43 } elseif (!IS_MEMBER()) {
44         redirectToUrl('modules.php?module=index');
45 } elseif ((!EXT_IS_ACTIVE('beg')) && (!IS_ADMIN())) {
46         addFatalMessage(__FILE__, __LINE__, generateExtensionInactiveMessage('beg'));
47         return;
48 }
49
50 // Add description as navigation point
51 ADD_DESCR('member', __FILE__);
52
53 // Autopurge installed?
54 $lastOnline = "%s"; $ONLINE = '';
55 if (EXT_IS_ACTIVE('autopurge')) {
56         // Use last online timestamp to keep inactive members away from here
57         $lastOnline   = " AND `last_online` >= (UNIX_TIMESTAMP() - %s)";
58         $ONLINE = getConfig('ap_inactive_since');
59 }
60
61 // Let's check if there are some points left we can "pay"...
62 $result = SQL_QUERY_ESC("SELECT userid, beg_points AS beg, last_online FROM `{!_MYSQL_PREFIX!}_user_data`
63 WHERE beg_points > 0 AND `status`='CONFIRMED'".$lastOnline."
64 ORDER BY beg_points DESC, last_online DESC, userid LIMIT %s",
65 array($ONLINE, getConfig('beg_ranks')), __FILE__, __LINE__);
66
67 // Reset temporary variable and check for users
68 $OUT = '';
69 if (SQL_NUMROWS($result) > 0) {
70         // Load our winners...
71         $SW = 2; $cnt = 1;
72         while ($content = SQL_FETCHARRAY($result)) {
73                 // Prepare data for the template
74                 $content = array(
75                         'sw'     => $SW,
76                         'cnt'    => $cnt,
77                         'uid'    => bigintval($content['userid']),
78                         'points' => translateComma($content['beg']),
79                         'last'   => generateDateTime($content['last_online'], '2'),
80                 );
81
82                 // Load row template
83                 $OUT .= LOAD_TEMPLATE("member_list_beg_row", true, $content);
84
85                 // Count one up and switch colors
86                 $cnt++; $SW = 3 - $SW;
87         }
88 } else {
89         // No one is interested in our "active rallye" ! :-(
90         $OUT = LOAD_TEMPLATE("member_beg_404", true);
91 }
92
93 // Free memory
94 SQL_FREERESULT($result);
95
96 // Remeber row(s) for the template
97 define('__BEG_ROWS', $OUT);
98
99 // Load final template
100 LOAD_TEMPLATE("member_list_beg");
101
102 //
103 ?>