Some language strings fixed, renamed. Copyright notice updated
[mailer.git] / inc / daily / daily_100_bonus.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 10/25/2009 *
4  * ===================                          Last change: 06/20/2010 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : daily_100_bonus.php                              *
8  * -------------------------------------------------------------------- *
9  * Short description : Check for 100% clickrate order                   *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Nach Mailbestaetigungen mit 100% Klickrate s.    *
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 ((!isHtmlOutputMode()) || (!isResetModeEnabled())) {
42         // Do not execute when script is in CSS mode or no daily reset
43         return;
44 } elseif (!isExtensionActive('bonus')) {
45         logDebugMessage(__FILE__, __LINE__, 'Not resetting, needed extension disabled.');
46         return;
47 }
48
49 // Debug line
50 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset started.');
51
52 // Check for 100% klickrate mails
53 $result_bonus = SQL_QUERY("SELECT
54         `id`, `userid`, `subject`, `timestamp_ordered`, `clicks`, `url`
55 FROM
56         `{?_MYSQL_PREFIX?}_user_stats`
57 WHERE
58         `max_rec`=`clicks` AND
59         `clicks` > 0 AND
60         `bonus_stats_active`='N'
61 ORDER BY
62         `userid` ASC", __FILE__, __LINE__);
63
64 if (!SQL_HASZERONUMS($result_bonus)) {
65         // We found some mail orders...
66         while ($content = SQL_FETCHARRAY($result_bonus)) {
67                 // Add points
68                 SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `bonus_stats`=`bonus_stats`+{?bonus_stats?} WHERE `userid`=%s LIMIT 1",
69                         array(bigintval($content['userid'])), __FILE__, __LINE__);
70
71                 // Translate some data
72                 $content['timestamp'] = generateDateTime($content['timestamp_ordered'], 2);
73
74                 // Load email template and send email
75                 $message = loadEmailTemplate('member_stats_bonus', $content, bigintval($content['userid']));
76                 sendEmail($content['userid'], '{--MEMBER_BONUS_STATS_SUBJECT--}', $message);
77
78                 // Update database
79                 $result_update = SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_stats` SET `bonus_stats_active`='Y' WHERE `id`=%s LIMIT 1",
80                         array(bigintval($content['id'])), __FILE__, __LINE__);
81         } // END - while
82
83         // Handle bonus points
84         handleBonusPoints(getConfig('bonus_stats'));
85 } // END - if
86
87 // Free memory
88 SQL_FREERESULT($result_bonus);
89
90 // Debug line
91 //* DEBUG: */ logDebugMessage(__FILE__, __LINE__, 'Daily reset ended.');
92
93 // [EOF]
94 ?>