2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 10/22/2005 *
4 * =================== Last change: 10/22/2005 *
6 * -------------------------------------------------------------------- *
7 * File : what-list_beg.php *
8 * -------------------------------------------------------------------- *
9 * Short description : List members in begging-rallye *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Mitglieder in Bettel-Rallye auflisten *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009 - 2012 by Mailer Developer Team *
20 * For more information visit: http://mxchange.org *
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. *
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. *
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, *
36 ************************************************************************/
38 // Some security stuff...
39 if ((!defined('__SECURITY')) || (!isAdmin())) {
43 // Add description as navigation point
44 addYouAreHereLink('admin', __FILE__);
46 if (isBegRallyeEnabled()) {
47 // Shall I withdraw now?
48 if (isPostRequestElementSet('withdraw')) {
49 // Okay, let's prepare...
50 $curr = getMonth() - 1;
51 if (strlen($curr) == 1) $curr = '0' . $curr;
52 updateConfiguration('last_month', $curr);
53 displayMessage('{--ADMIN_BEG_WITHDRAW_PREPARED--}');
59 // Autopurge installed?
60 if ((isExtensionActive('autopurge')) && (isBegActiveEnabled()) && ((getApInactiveSince() > 0))) {
61 // Use last online timestamp to keep inactive members away from here
62 $lastOnline = ' AND (UNIX_TIMESTAMP() - `last_online`) < {?ap_inactive_since?}';
65 // Check if at least one is in the active rallye
66 $result = SQL_QUERY("SELECT
72 `{?_MYSQL_PREFIX?}_user_data`
74 `status`='CONFIRMED' AND
77 " . runFilterChain('user_exclusion_sql', ' ') . "
81 `userid` ASC", __FILE__, __LINE__);
83 if (!SQL_HASZERONUMS($result)) {
85 $OUT = ''; $count = 1; $total = '0';
86 while ($content = SQL_FETCHARRAY($result)) {
91 // Maybe he can win his active beg?
92 if ($count <= getBegRanks()) {
100 'userid' => $content['userid'],
101 'email' => generateEmailLink($content['email'], 'user_data'),
102 'last_online' => generateDateTime($content['last_online'], '2'),
108 // Load template and add it
109 $OUT .= loadTemplate('admin_list_beg_rows', true, $row);
111 $total += $content['beg_points'];
114 $content['rows'] = $OUT;
115 $content['total_points'] = $total;
117 // Check if we need to display form or not with manuel withdraw
118 if (getLastMonth() == getMonth()) {
120 $content['withdraw_form'] = loadTemplate('admin_list_beg_form', true);
122 // Display message "no manual withdraw possible"
123 $content['withdraw_form'] = displayMessage('{--ADMIN_BEG_ALREADY_WITHDRAW--}', true);
126 // Prepare constant for timemark
127 if (isExtensionActive('autopurge')) {
128 $content['autopurge_timeout'] = generateDateTime(time() - getApInactiveSince(), 2);
130 $content['autopurge_timeout'] = displayMessage('{%pipe,generateExtensionInactiveNotInstalledMessage=autopurge%}', true);
133 // Load final template
134 loadTemplate('admin_list_beg', false, $content);
136 // No one has joined the begging rallye...
137 displayMessage('{--ADMIN_BEG_NO_RALLYE--}');
140 // Rallye deactivated
141 displayMessage('{--ADMIN_BEG_RALLYE_DEACTIVATED--}');