Rewrote some code, added templates/functions:
[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 - 2013 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 = sqlQueryEscaped("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 (!ifSqlHasZeroNums($result)) {
73         // Load all orders
74         $OUT = '';
75         while ($content = sqlFetchArray($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'] = returnMessage('{--MEMBER_NO_MAILS_IN_POOL--}');
88 }
89
90 // Free result
91 sqlFreeResult($result);
92
93 // Load sent orders
94 $result = sqlQueryEscaped('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 (!ifSqlHasZeroNums($result)) {
113         // Mail orders are in pool so we can display them
114         $OUT = '';
115         while ($content = sqlFetchArray($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'] = calculatePercentageRate($content['clicks'], $content['max_rec']);
122
123                 // Load row template and switch colors
124                 $OUT .= loadTemplate('member_stats_row', TRUE, $content);
125         } // END - while
126
127         // Load main template
128         $main_content['stats'] = loadTemplate('member_stats_table', TRUE, $OUT);
129 } else {
130         // No mail orders fond
131         $main_content['stats'] = returnMessage('{--MEMBER_NO_MAILS_IN_STATS--}');
132 }
133
134 // Free result
135 sqlFreeResult($result);
136
137 // Load main template
138 loadTemplate('member_stats_pool', FALSE, $main_content);
139
140 // [EOF]
141 ?>