75a93fa8b0bf549fae7ebb5d734ab2ceef51651d
[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  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
21  * Copyright (c) 2009, 2010 by Mailer Developer Team                    *
22  * For more information visit: http://www.mxchange.org                  *
23  *                                                                      *
24  * This program is free software; you can redistribute it and/or modify *
25  * it under the terms of the GNU General Public License as published by *
26  * the Free Software Foundation; either version 2 of the License, or    *
27  * (at your option) any later version.                                  *
28  *                                                                      *
29  * This program is distributed in the hope that it will be useful,      *
30  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
31  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
32  * GNU General Public License for more details.                         *
33  *                                                                      *
34  * You should have received a copy of the GNU General Public License    *
35  * along with this program; if not, write to the Free Software          *
36  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
37  * MA  02110-1301  USA                                                  *
38  ************************************************************************/
39
40 // Some security stuff...
41 if (!defined('__SECURITY')) {
42         die();
43 } elseif (!isMember()) {
44         redirectToIndexMemberOnlyModule();
45 }
46
47 // Add description as navigation point
48 addMenuDescription('member', __FILE__);
49
50 // Init output
51 $main_content = array();
52
53 // Load waiting/pending orders
54 $result = SQL_QUERY_ESC("SELECT
55         `id`, `cat_id`, `payment_id`, `subject`, `url`, `timestamp`, `target_send`, `data_type`, `zip`
56 FROM
57         `{?_MYSQL_PREFIX?}_pool`
58 WHERE
59         `sender`=%s AND
60         `data_type` != 'SEND'
61 ORDER BY
62         `timestamp` DESC",
63         array(getMemberId()), __FILE__, __LINE__);
64
65 // Are there mails left in pool?
66 if (SQL_NUMROWS($result) > 0) {
67         // Load all orders
68         $OUT = ''; $SW = 2;
69         while ($content = SQL_FETCHARRAY($result)) {
70                 // Is the ZIP code set? If not, set dashes
71                 if (empty($content['zip'])) $content['zip'] =  '---';
72
73                 // Prepare content for output
74                 $content = array(
75                         'sw'          => $SW,
76                         'id'          => $content['id'],
77                         'cat'         => getCategory($content['cat_id']),
78                         'pay'         => getPaymentTitlePrice($content['payment_id']),
79                         'subject'     => $content['subject'],
80                         'url'         => generateDerefererUrl($content['url']),
81                         'timestamp'   => generateDateTime($content['timestamp'], 2),
82                         'target_send' => $content['target_send'],
83                         'type'        => translatePoolType($content['data_type']),
84                         'zip'         => $content['zip']
85                 );
86
87                 // Load template
88                 $OUT .= loadTemplate('member_pool_row', true, $content);
89
90                 // Switch color
91                 $SW = 3 - $SW;
92         } // END - if
93
94         // Load main template
95         $main_content['pool'] = loadTemplate('member_pool_table', true, $OUT);
96 } else {
97         // No mails in pool!
98         $main_content['pool'] = loadTemplate('admin_settings_saved', true, '{--MEMBER_NO_MAILS_IN_POOL--}');
99 }
100
101 // Free result
102 SQL_FREERESULT($result);
103
104 // Load sent orders
105 $result = SQL_QUERY_ESC("SELECT
106         `id`, `cat_id`, `payment_id`, `subject`, `url`, `timestamp_ordered`, `max_rec`, `timestamp_send`, `clicks`
107 FROM
108         `{?_MYSQL_PREFIX?}_user_stats`
109 WHERE
110         `userid`=%s
111 ORDER BY
112         `timestamp_ordered` DESC",
113         array(getMemberId()), __FILE__, __LINE__);
114
115 if (SQL_NUMROWS($result) > 0) {
116         // Mail orders are in pool so we can display them
117         $OUT = ''; $SW = 2;
118         while ($content = SQL_FETCHARRAY($result)) {
119                 // Prepare data for the template
120                 $content = array(
121                         'sw'                => $SW,
122                         'cat_id'            => $content['cat_id'],
123                         'payment_id'        => $content['payment_id'],
124                         'url'               => $content['url'],
125                         'timestamp_ordered' => generateDateTime($content['timestamp_ordered'], 2),
126                         'max_rec'           => $content['max_rec'],
127                         'timestamp_sent'    => generateDateTime($content['timestamp_send'], 2),
128                         'clicks'            => $content['clicks'],
129                         'subject'           => $content['subject'],
130                         'percents'          => ($content['clicks'] / $content['max_rec'] * 100),
131                 );
132
133                 // Load row template and switch colors
134                 $OUT .= loadTemplate('member_stats_row', true, $content);
135                 $SW = 3 - $SW;
136         } // END - if
137
138         // Load main template
139         $main_content['stats'] = loadTemplate('member_stats_table', true, $OUT);
140 } else {
141         // No mail orders fond
142         $main_content['stats'] = loadTemplate('admin_settings_saved', true, '{--MEMBER_NO_MAILS_IN_STATS--}');
143 }
144
145 // Free result
146 SQL_FREERESULT($result);
147
148 // Load main template
149 loadTemplate('member_stats_pool', false, $main_content);
150
151 // [EOF]
152 ?>