2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 10/22/2005 *
4 * =================== Last change: 10/22/2005 *
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 * 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 *
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. *
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. *
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, *
38 ************************************************************************/
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
43 } elseif (!isExtensionActive('beg')) {
47 // Do not execute when script is in CSS mode or no daily reset
48 if ((getOutputMode() == 1) || (!isResetModeEnabled()) || (getConfig('beg_rallye') != 'Y')) return;
49 //* DEBUG: */ outputHtml(basename(__FILE__)."<br />");
51 // Get current month (2 digits)
52 $curr = date('m', time());
54 // Check if month is done
55 if (($curr != getConfig('last_month')) && (getConfig('last_month') > 0) && (getConfig('beg_ranks') > 0) && (getOutputMode() != 1)) {
56 // Extension 'autopurge' is inactive or purging of inactive accounts is deactivated
57 $whereStatement1 = '';
59 // Shall we exclude webmaster's own userid?
60 if ((getConfig('beg_include_own') != 'Y') && (getConfig('beg_userid') > 0)) {
62 $whereStatement1 = " AND `userid` != {?beg_userid?}";
65 // Let's check if there are some points left we can 'pay'...
66 if (isExtensionActive('autopurge')) {
67 // Use last online stamp only when autopurge for inactive members is activated
68 if ((getConfig('ap_inactive_since') > 0) && (getConfig('beg_active') == 'Y')) {
69 // Okay, include last online timestamp
70 $whereStatement1 .= " AND `last_online` >= (UNIX_TIMESTAMP() - {?ap_inactive_since?})";
74 // SQL string to check for accounts
75 $result_main = SQL_QUERY("SELECT
76 `userid`, `email`, `gender`, `surname`, `family`, `beg_points` AS points
78 `{?_MYSQL_PREFIX?}_user_data`
80 `status`='CONFIRMED'" . $whereStatement1 . " AND
85 LIMIT {?beg_ranks?}", __FILE__, __LINE__);
87 if (SQL_NUMROWS($result_main) > 0) {
88 // Load our winners...
89 while ($content = SQL_FETCHARRAY($result_main)) {
90 // Add points to user's account directly
91 addPointsDirectly('monthly_beg', $content['userid'], $content['points']);
93 // Load email template and email it away
94 $message = loadEmailTemplate('member_beg', $content, bigintval($content['userid']));
95 sendEmail($content['email'], getMessage('BEG_MONTHLY_RALLYE'), $message);
99 $result = SQL_QUERY("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `beg_points`=0.00000 WHERE `beg_points` > 0", __FILE__, __LINE__);
103 SQL_FREERESULT($result_main);