b6632bb791273dcd4bd802b935bdcda02500a930
[mailer.git] / inc / modules / member / what-beg2.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } elseif (!isMember()) {
44         redirectToIndexMemberOnlyModule();
45 }
46
47 // Add description as navigation point
48 addMenuDescription('member', __FILE__);
49
50 if ((!isExtensionActive('beg')) && (!isAdmin())) {
51         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('beg'));
52         return;
53 } // END - if
54
55 // Autopurge installed?
56 $lastOnline = "%s";
57 $ONLINE = '';
58
59 if (isExtensionActive('autopurge')) {
60         // Use last online timestamp to keep inactive members away from here
61         $lastOnline   = " AND `last_online` >= (UNIX_TIMESTAMP() - %s)";
62         $ONLINE = '{?ap_inactive_since?}';
63 } // END - if
64
65 // Let's check if there are some points left we can 'pay'...
66 $result = SQL_QUERY_ESC("SELECT
67         `userid`, `beg_points` AS points, `last_online`
68 FROM
69         `{?_MYSQL_PREFIX?}_user_data`
70 WHERE
71         `beg_points` > 0 AND
72         `status`='CONFIRMED'
73         " . $lastOnline . "
74 ORDER BY
75         `beg_points` DESC,
76         `last_online` DESC,
77         `userid` ASC
78 LIMIT {?beg_ranks?}",
79         array(
80                 $ONLINE
81         ), __FILE__, __LINE__);
82
83 // Reset temporary variable and check for users
84 $OUT = '';
85 if (SQL_NUMROWS($result) > 0) {
86         // Load our winners...
87         $SW = 2; $cnt = 1;
88         while ($content = SQL_FETCHARRAY($result)) {
89                 // Prepare data for the template
90                 $content = array(
91                         'sw'          => $SW,
92                         'cnt'         => $cnt,
93                         'userid'      => $content['userid'],
94                         'points'      => $content['points'],
95                         'last_online' => generateDateTime($content['last_online'], 2),
96                 );
97
98                 // Load row template
99                 $OUT .= loadTemplate('member_list_beg_row', true, $content);
100
101                 // Count one up and switch colors
102                 $cnt++; $SW = 3 - $SW;
103         } // END - while
104 } else {
105         // No one is interested in our "active rallye" ! :-(
106         $OUT = loadTemplate('member_beg_404', true);
107 }
108
109 // Prepare content
110 $content['rows'] = $OUT;
111
112 // Free memory
113 SQL_FREERESULT($result);
114
115 // Load final template
116 loadTemplate('member_list_beg', false, $content);
117
118 // [EOF]
119 ?>