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