2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 10/22/2005 *
4 * =================== Last change: 06/20/2010 *
6 * -------------------------------------------------------------------- *
7 * File : monthly_beg.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Monthly begging rallye *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Monatliche Bettelrallye *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
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 *
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')) {
41 } elseif ((isCssOutputMode()) || (!isResetModeEnabled())) {
42 // Do not execute when script is in CSS mode or no hourly reset
44 } elseif ((!isExtensionActive('beg')) || (!isBegRallyeEnabled())) {
45 logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
50 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Monthly reset started.');
52 // Check if month is done
53 if ((getBegRanks() > 0) && (!isCssOutputMode())) {
54 // Extension 'autopurge' is inactive or purging of inactive accounts is deactivated
55 $whereStatement1 = '';
57 // Shall we exclude webmaster's own userid?
58 if ((!isBegIncludeOwnEnabled()) && (isValidUserId(getBegUserid()))) {
60 $whereStatement1 = " AND `userid` != {?beg_userid?}";
63 // Let's check if there are some points left we can pay...
64 if (isExtensionActive('autopurge')) {
65 // Use last online stamp only when autopurge for inactive members is activated
66 if ((getApInactiveSince() > 0) && (isBegActiveEnabled())) {
67 // Okay, include last online timestamp
68 $whereStatement1 .= " AND `last_online` >= (UNIX_TIMESTAMP() - {?ap_inactive_since?})";
72 // SQL string to check for accounts
73 $result_main = SQL_QUERY("SELECT
74 `userid`, `email`, `gender`, `surname`, `family`, `beg_points` AS points
76 `{?_MYSQL_PREFIX?}_user_data`
78 `status`='CONFIRMED'" . $whereStatement1 . " AND
83 LIMIT {?beg_ranks?}", __FILE__, __LINE__);
85 if (!SQL_HASZERONUMS($result_main)) {
86 // Load our winners...
87 while ($content = SQL_FETCHARRAY($result_main)) {
88 // Add points to user's account directly
89 addPointsDirectly('monthly_beg', $content['userid'], $content['points']);
91 // Load email template and email it away
92 $message = loadEmailTemplate('member_beg', $content, bigintval($content['userid']));
93 sendEmail($content['email'], '{--BEG_MONTHLY_RALLYE--}', $message);
97 $result = SQL_QUERY('UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `beg_points`=0.00000 WHERE `beg_points` > 0', __FILE__, __LINE__);
101 SQL_FREERESULT($result_main);
105 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Monthly reset ended.');