2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 10/25/2009 *
4 * =================== Last change: 06/20/2010 *
6 * -------------------------------------------------------------------- *
7 * File : reset_100_bonus.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Check for 100% clickrate order *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Nach Mailbestaetigungen mit 100% Klickrate s. *
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 ((getScriptOutputMode() != 0) || (!isResetModeEnabled())) {
44 // Do not execute when script is in CSS mode or no daily reset
46 } elseif (!isExtensionActive('bonus')) {
47 logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
51 // Check for 100% klickrate mails
52 $result_bonus = SQL_QUERY("SELECT
53 `id`, `userid`, `subject`, `timestamp_ordered`, `clicks`, `url`
55 `{?_MYSQL_PREFIX?}_user_stats`
57 `max_rec`=`clicks` AND
59 `bonus_stats_active`='N'
61 `userid` ASC", __FILE__, __LINE__);
63 if (SQL_NUMROWS($result_bonus) > 0) {
64 // We found some mail orders...
65 while ($content = SQL_FETCHARRAY($result_bonus)) {
67 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `bonus_stats`=`bonus_stats`+{?bonus_stats?} WHERE `userid`=%s LIMIT 1",
68 array(bigintval($content['userid'])), __FILE__, __LINE__);
70 // Translate some data
71 $content['timestamp'] = generateDateTime($content['timestamp_ordered'], 2);
73 // Load email template and send email
74 $message = loadEmailTemplate('member_stats_bonus', $content, bigintval($content['userid']));
75 sendEmail($content['userid'], '{--BONUS_MEMBER_STATS_SUBJECT--}', $message);
78 $result_update = SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_stats` SET `bonus_stats_active`='Y' WHERE `id`=%s LIMIT 1",
79 array(bigintval($content['id'])), __FILE__, __LINE__);
82 // Handle bonus points
83 handleBonusPoints(getConfig('bonus_stats'));
87 SQL_FREERESULT($result_bonus);