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