A lot has been rewritten, ext-teams added, ext-forced continued:
[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('{%pipe,generateExtensionInactiveNotInstalledMessage=beg%}');
50         return;
51 } // END - if
52
53 // Autopurge installed?
54 $lastOnline = '%s';
55 $ONLINE = '';
56
57 if ((isExtensionActive('autopurge')) && (isBegActiveEnabled()) && ((getApInactiveSince() > 0))) {
58         // Use last online timestamp to keep inactive members away from here
59         $lastOnline   = ' AND (UNIX_TIMESTAMP() - `last_online`) < {?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`,
65         `beg_points`,
66         `last_online`
67 FROM
68         `{?_MYSQL_PREFIX?}_user_data`
69 WHERE
70         `beg_points` > 0 AND
71         `status`='CONFIRMED'
72         " . $lastOnline . "
73 ORDER BY
74         `beg_points` DESC,
75         `last_online` DESC,
76         `userid` ASC
77 LIMIT {?beg_ranks?}",
78         array(
79                 $ONLINE
80         ), __FILE__, __LINE__);
81
82 // Reset temporary variable and check for users
83 $OUT = '';
84 if (!SQL_HASZERONUMS($result)) {
85         // Load our winners...
86         $count = 1;
87         while ($content = SQL_FETCHARRAY($result)) {
88                 // Prepare data for the template
89                 $content['count']       = $count;
90                 $content['last_online'] = generateDateTime($content['last_online'], '2');
91
92                 // Load row template
93                 $OUT .= loadTemplate('member_list_beg_row', true, $content);
94
95                 // Count one up
96                 $count++;
97         } // END - while
98 } else {
99         // No one is interested in our "begging rallye" ! :-(
100         $OUT = loadTemplate('member_beg_404', true);
101 }
102
103 // Prepare content
104 $content['rows'] = $OUT;
105
106 // Free memory
107 SQL_FREERESULT($result);
108
109 // Load final template
110 loadTemplate('member_list_beg', false, $content);
111
112 // [EOF]
113 ?>