]> git.mxchange.org Git - mailer.git/blobdiff - inc/stats_bonus.php
Since Wernis API 0.6-BETA SHA256 is the default now
[mailer.git] / inc / stats_bonus.php
index 2ad4a0cf4d016827cfbcd4c49b119ef0335d4707..f551ef47b7591c74e7b59193e56a1fa6505a87ab 100644 (file)
@@ -1,82 +1,3 @@
 <?php
-/************************************************************************
- * MXChange v0.2.1                                    Start: 03/18/2005 *
- * ===============                              Last change: 03/18/2005 *
- *                                                                      *
- * -------------------------------------------------------------------- *
- * File              : stats_bonus.php                                  *
- * -------------------------------------------------------------------- *
- * Short description : Check for 100% clickrate order                   *
- * -------------------------------------------------------------------- *
- * Kurzbeschreibung  : Nach Mailbestaetigungen mit 100% Klickrate s.    *
- * -------------------------------------------------------------------- *
- *                                                                      *
- * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
- *                                                                      *
- * This program is free software; you can redistribute it and/or modify *
- * it under the terms of the GNU General Public License as published by *
- * the Free Software Foundation; either version 2 of the License, or    *
- * (at your option) any later version.                                  *
- *                                                                      *
- * This program is distributed in the hope that it will be useful,      *
- * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
- * GNU General Public License for more details.                         *
- *                                                                      *
- * You should have received a copy of the GNU General Public License    *
- * along with this program; if not, write to the Free Software          *
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
- * MA  02110-1301  USA                                                  *
- ************************************************************************/
-
-// Some security stuff...
-if (!defined('__SECURITY'))
-{
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
-
-// Check for 100% klickrate mails
-$result_bonus = SQL_QUERY("SELECT id, userid, subject, timestamp_ordered, clicks, url
-FROM "._MYSQL_PREFIX."_user_stats
-WHERE max_rec=clicks AND clicks>0 AND bonus_stats='N'
-ORDER BY userid", __FILE__, __LINE__);
-
-if (SQL_NUMROWS($result_bonus) > 0) {
-       // Remember stats bonus in constant
-       define('__STATS_BONUS', TRANSLATE_COMMA($_CONFIG['bonus_stats']));
-
-       // We found some mail orders...
-       while(list($id, $uid, $subj, $stamp, $clicks, $url) = SQL_FETCHROW($result_bonus)) {
-               // Add points
-               $result_points = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_data SET bonus_stats=bonus_stats+%s WHERE userid=%s LIMIT 1",
-                array($_CONFIG['bonus_stats'], bigintval($uid)), __FILE__, __LINE__);
-
-               // Prepare array
-               $content = array(
-                       'subject'   => $subj,
-                       'timestamp' => MAKE_DATETIME($stamp, "2"),
-                       'clicks'    => $clicks,
-                       'url'       => $url
-               );
-
-               // Load email template and send email
-               $msg = LOAD_EMAIL_TEMPLATE("member_stats_bonus", $content, bigintval($uid));
-               SEND_EMAIL($uid, BONUS_MEMBER_STATS_SUBJECT, $msg);
-
-               // Update database
-               $result_update =  SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_user_stats SET bonus_stats='Y' WHERE id=%s LIMIT 1",
-                array(bigintval($id)), __FILE__, __LINE__);
-       }
-
-       // Handle bonus points
-       BONUS_POINTS_HANDLER($_CONFIG['bonus_stats']);
-}
-
-// Free memory
-SQL_FREERESULT($result_bonus);
-
-//
+// @DEPRECATED
 ?>