Mailer project continued:
[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 - 2012 by Mailer Developer Team                   *
20  * For more information visit: http://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         exit();
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`,
54         `cat_id`,
55         `payment_id`,
56         `subject`,
57         `url`,
58         `timestamp`,
59         `target_send`,
60         `data_type`,
61         `zip`
62 FROM
63         `{?_MYSQL_PREFIX?}_pool`
64 WHERE
65         `sender`=%s AND
66         `data_type` != 'SEND'
67 ORDER BY
68         `timestamp` DESC",
69         array(getMemberId()), __FILE__, __LINE__);
70
71 // Are there mails left in pool?
72 if (!SQL_HASZERONUMS($result)) {
73         // Load all orders
74         $OUT = '';
75         while ($content = SQL_FETCHARRAY($result)) {
76                 // Prepare content for output
77                 $content['timestamp'] = generateDateTime($content['timestamp'], '2');
78
79                 // Load template
80                 $OUT .= loadTemplate('member_pool_row', true, $content);
81         } // END - if
82
83         // Load main template
84         $main_content['pool'] = loadTemplate('member_pool_table', true, $OUT);
85 } else {
86         // No mails in pool!
87         $main_content['pool'] = displayMessage('{--MEMBER_NO_MAILS_IN_POOL--}', true);
88 }
89
90 // Free result
91 SQL_FREERESULT($result);
92
93 // Load sent orders
94 $result = SQL_QUERY_ESC('SELECT
95         `id`,
96         `cat_id`,
97         `payment_id`,
98         `subject`,
99         `url`,
100         `timestamp_ordered`,
101         `max_rec`,
102         `timestamp_send`,
103         `clicks`
104 FROM
105         `{?_MYSQL_PREFIX?}_user_stats`
106 WHERE
107         `userid`=%s
108 ORDER BY
109         `timestamp_ordered` DESC',
110         array(getMemberId()), __FILE__, __LINE__);
111
112 if (!SQL_HASZERONUMS($result)) {
113         // Mail orders are in pool so we can display them
114         $OUT = '';
115         while ($content = SQL_FETCHARRAY($result)) {
116                 // Prepare data for the template
117                 $content['timestamp_ordered'] = generateDateTime($content['timestamp_ordered'], '2');
118                 $content['timestamp_sent']    = generateDateTime($content['timestamp_send'], '2');
119
120                 // Click rate
121                 $content['click_rate'] = '0';
122
123                 // Better protection against 'divison-by-zero'
124                 if ($content['max_rec'] > 0) {
125                         $content['click_rate'] = ($content['clicks'] / $content['max_rec'] * 100);
126                 } // END - if
127
128                 // Load row template and switch colors
129                 $OUT .= loadTemplate('member_stats_row', true, $content);
130         } // END - while
131
132         // Load main template
133         $main_content['stats'] = loadTemplate('member_stats_table', true, $OUT);
134 } else {
135         // No mail orders fond
136         $main_content['stats'] = displayMessage('{--MEMBER_NO_MAILS_IN_STATS--}', true);
137 }
138
139 // Free result
140 SQL_FREERESULT($result);
141
142 // Load main template
143 loadTemplate('member_stats_pool', false, $main_content);
144
145 // [EOF]
146 ?>