2 /************************************************************************
3 * Mailer v0.2.1-FINAL Start: 10/08/2005 *
4 * =================== Last change: 01/01/2006 *
6 * -------------------------------------------------------------------- *
7 * File : gen_mediadata.php *
8 * -------------------------------------------------------------------- *
9 * Short description : Checks for existing mail orders *
10 * -------------------------------------------------------------------- *
11 * Kurzbeschreibung : Prueft bestehende Mailbuchungen *
12 * -------------------------------------------------------------------- *
15 * $Tag:: 0.2.1-FINAL $ *
17 * -------------------------------------------------------------------- *
18 * Copyright (c) 2003 - 2009 by Roland Haeder *
19 * Copyright (c) 2009, 2010 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')) {
43 // Init array/varriable
52 // Check for normal mails
53 $result_media = SQL_QUERY('SELECT
54 SUM(`max_rec`) AS `normal_send`,
55 SUM(`clicks`) AS `normal_clicks`
57 `{?_MYSQL_PREFIX?}_user_stats`', __FILE__, __LINE__);
58 $content = merge_array($content, SQL_FETCHARRAY($result_media));
61 SQL_FREERESULT($result_media);
63 // Check for bonus extension
64 if (isExtensionActive('bonus')) {
66 $bcount = countSumTotalData('', 'bonus', 'id', '', true);
68 // Check for bonus mails
69 $result_media = SQL_QUERY('SELECT
70 SUM(`mails_send`) AS `bonus_send`,
71 SUM(`clicks`) AS `bonus_clicks`
73 `{?_MYSQL_PREFIX?}_bonus`', __FILE__, __LINE__);
74 $content = merge_array($content, SQL_FETCHARRAY($result_media));
77 SQL_FREERESULT($result_media);
80 // Load (maybe) missing file
81 loadIncludeOnce('inc/libs/mediadata_functions.php');
83 // Insert info to database
84 updateMediadataEntry(array('total_send' , 'normal_send') , 'init', $content['normal_send']);
85 updateMediadataEntry(array('total_clicks', 'normal_clicks'), 'init', $content['normal_clicks']);
86 updateMediadataEntry(array('total_orders', 'normal_orders'), 'init', countSumTotalData('', 'user_stats', 'id', '', true));
87 updateMediadataEntry(array('total_send' , 'bonus_send' ) , 'init', $content['bonus_send']);
88 updateMediadataEntry(array('total_clicks', 'bonus_clicks') , 'init', $content['bonus_clicks']);
89 updateMediadataEntry(array('total_orders', 'bonus_orders') , 'init', $bcount);
91 // Aquire total used points
92 $used = countSumTotalData('', 'user_data', 'used_points', '');
94 // ... and total points
95 $points = countSumTotalData('', 'user_points', 'points', '');
98 updateMediadataEntry(array('total_points'), 'init', ($points - $used));