Even more rewrites to make usage of EL
[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 = '';
69         while ($content = SQL_FETCHARRAY($result)) {
70                 // Prepare content for output
71                 $content['timestamp'] = generateDateTime($content['timestamp'], 2);
72
73                 // Load template
74                 $OUT .= loadTemplate('member_pool_row', true, $content);
75         } // END - if
76
77         // Load main template
78         $main_content['pool'] = loadTemplate('member_pool_table', true, $OUT);
79 } else {
80         // No mails in pool!
81         $main_content['pool'] = loadTemplate('admin_settings_saved', true, '{--MEMBER_NO_MAILS_IN_POOL--}');
82 }
83
84 // Free result
85 SQL_FREERESULT($result);
86
87 // Load sent orders
88 $result = SQL_QUERY_ESC("SELECT
89         `id`, `cat_id`, `payment_id`, `subject`, `url`, `timestamp_ordered`, `max_rec`, `timestamp_send`, `clicks`
90 FROM
91         `{?_MYSQL_PREFIX?}_user_stats`
92 WHERE
93         `userid`=%s
94 ORDER BY
95         `timestamp_ordered` DESC",
96         array(getMemberId()), __FILE__, __LINE__);
97
98 if (SQL_NUMROWS($result) > 0) {
99         // Mail orders are in pool so we can display them
100         $OUT = '';
101         while ($content = SQL_FETCHARRAY($result)) {
102                 // Prepare data for the template
103                 $content = array(
104                         'cat_id'            => $content['cat_id'],
105                         'payment_id'        => $content['payment_id'],
106                         'url'               => $content['url'],
107                         'timestamp_ordered' => generateDateTime($content['timestamp_ordered'], 2),
108                         'max_rec'           => $content['max_rec'],
109                         'timestamp_sent'    => generateDateTime($content['timestamp_send'], 2),
110                         'clicks'            => $content['clicks'],
111                         'subject'           => $content['subject'],
112                         'percents'          => ($content['clicks'] / $content['max_rec'] * 100),
113                 );
114
115                 // Load row template and switch colors
116                 $OUT .= loadTemplate('member_stats_row', true, $content);
117         } // END - if
118
119         // Load main template
120         $main_content['stats'] = loadTemplate('member_stats_table', true, $OUT);
121 } else {
122         // No mail orders fond
123         $main_content['stats'] = loadTemplate('admin_settings_saved', true, '{--MEMBER_NO_MAILS_IN_STATS--}');
124 }
125
126 // Free result
127 SQL_FREERESULT($result);
128
129 // Load main template
130 loadTemplate('member_stats_pool', false, $main_content);
131
132 // [EOF]
133 ?>