8b26caedb61913290193d6345bc7d2378f49db64
[mailer.git] / inc / modules / member / what-stats.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 11/09/2003 *
4  * ===================                          Last change: 04/21/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-stats.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Statistics over send mails                       *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Statistik ueber gesendete Mails                  *
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 (!isMember()) {
42         redirectToIndexMemberOnlyModule();
43 }
44
45 // Add description as navigation point
46 addYouAreHereLink('member', __FILE__);
47
48 // Init output
49 $main_content = array();
50
51 // Load waiting/pending orders
52 $result = SQL_QUERY_ESC("SELECT
53         `id`, `cat_id`, `payment_id`, `subject`, `url`, `timestamp`, `target_send`, `data_type`, `zip`
54 FROM
55         `{?_MYSQL_PREFIX?}_pool`
56 WHERE
57         `sender`=%s AND
58         `data_type` != 'SEND'
59 ORDER BY
60         `timestamp` DESC",
61         array(getMemberId()), __FILE__, __LINE__);
62
63 // Are there mails left in pool?
64 if (!SQL_HASZERONUMS($result)) {
65         // Load all orders
66         $OUT = '';
67         while ($content = SQL_FETCHARRAY($result)) {
68                 // Prepare content for output
69                 $content['timestamp'] = generateDateTime($content['timestamp'], '2');
70
71                 // Load template
72                 $OUT .= loadTemplate('member_pool_row', true, $content);
73         } // END - if
74
75         // Load main template
76         $main_content['pool'] = loadTemplate('member_pool_table', true, $OUT);
77 } else {
78         // No mails in pool!
79         $main_content['pool'] = displayMessage('{--MEMBER_NO_MAILS_IN_POOL--}', true);
80 }
81
82 // Free result
83 SQL_FREERESULT($result);
84
85 // Load sent orders
86 $result = SQL_QUERY_ESC("SELECT
87         `id`, `cat_id`, `payment_id`, `subject`, `url`, `timestamp_ordered`, `max_rec`, `timestamp_send`, `clicks`
88 FROM
89         `{?_MYSQL_PREFIX?}_user_stats`
90 WHERE
91         `userid`=%s
92 ORDER BY
93         `timestamp_ordered` DESC",
94         array(getMemberId()), __FILE__, __LINE__);
95
96 if (!SQL_HASZERONUMS($result)) {
97         // Mail orders are in pool so we can display them
98         $OUT = '';
99         while ($content = SQL_FETCHARRAY($result)) {
100                 // Prepare data for the template
101                 $content['timestamp_ordered'] = generateDateTime($content['timestamp_ordered'], '2');
102                 $content['timestamp_sent']    = generateDateTime($content['timestamp_send'], '2');
103
104                 // Click rate
105                 $content['click_rate'] = '0';
106
107                 // Better protection against 'divison-by-zero'
108                 if ($content['max_rec'] > 0) {
109                         $content['click_rate'] = ($content['clicks'] / $content['max_rec'] * 100);
110                 } // END - if
111
112                 // Load row template and switch colors
113                 $OUT .= loadTemplate('member_stats_row', true, $content);
114         } // END - while
115
116         // Load main template
117         $main_content['stats'] = loadTemplate('member_stats_table', true, $OUT);
118 } else {
119         // No mail orders fond
120         $main_content['stats'] = displayMessage('{--MEMBER_NO_MAILS_IN_STATS--}', true);
121 }
122
123 // Free result
124 SQL_FREERESULT($result);
125
126 // Load main template
127 loadTemplate('member_stats_pool', false, $main_content);
128
129 // [EOF]
130 ?>