More misc fixes and rewrites (sorry, lame description)
[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__, generateExtensionInactiveNotInstalledMessage('beg'));
47         return;
48 }
49
50 // Add description as navigation point
51 ADD_DESCR('member', __FILE__);
52
53 // Autopurge installed?
54 $lastOnline = "%s";
55 $ONLINE = '';
56
57 if (EXT_IS_ACTIVE('autopurge')) {
58         // Use last online timestamp to keep inactive members away from here
59         $lastOnline   = " AND `last_online` >= (UNIX_TIMESTAMP() - %s)";
60         $ONLINE = getConfig('ap_inactive_since');
61 } // END - if
62
63 // Let's check if there are some points left we can 'pay'...
64 $result = SQL_QUERY_ESC("SELECT
65         `userid`, `beg_points` AS beg, `last_online`
66 FROM
67         `{!_MYSQL_PREFIX!}_user_data`
68 WHERE
69         `beg_points` > 0 AND `status`='CONFIRMED'".$lastOnline."
70 ORDER BY
71         `beg_points` DESC, `last_online` DESC, `userid` ASC LIMIT %s",
72         array(
73                 $ONLINE,
74                 getConfig('beg_ranks')
75         ), __FILE__, __LINE__);
76
77 // Reset temporary variable and check for users
78 $OUT = '';
79 if (SQL_NUMROWS($result) > 0) {
80         // Load our winners...
81         $SW = 2; $cnt = 1;
82         while ($content = SQL_FETCHARRAY($result)) {
83                 // Prepare data for the template
84                 $content = array(
85                         'sw'     => $SW,
86                         'cnt'    => $cnt,
87                         'uid'    => bigintval($content['userid']),
88                         'points' => translateComma($content['beg']),
89                         'last'   => generateDateTime($content['last_online'], '2'),
90                 );
91
92                 // Load row template
93                 $OUT .= LOAD_TEMPLATE('member_list_beg_row', true, $content);
94
95                 // Count one up and switch colors
96                 $cnt++; $SW = 3 - $SW;
97         }
98 } else {
99         // No one is interested in our "active rallye" ! :-(
100         $OUT = LOAD_TEMPLATE('member_beg_404', true);
101 }
102
103 // Free memory
104 SQL_FREERESULT($result);
105
106 // Remeber row(s) for the template
107 define('__BEG_ROWS', $OUT);
108
109 // Load final template
110 LOAD_TEMPLATE('member_list_beg');
111
112 //
113 ?>