Fixes for sql_patches removal vs. password reset of admin
[mailer.git] / inc / modules / member / what-stats.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    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  *                                                                      *
14  * -------------------------------------------------------------------- *
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
16  * For more information visit: http://www.mxchange.org                  *
17  *                                                                      *
18  * This program is free software; you can redistribute it and/or modify *
19  * it under the terms of the GNU General Public License as published by *
20  * the Free Software Foundation; either version 2 of the License, or    *
21  * (at your option) any later version.                                  *
22  *                                                                      *
23  * This program is distributed in the hope that it will be useful,      *
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
26  * GNU General Public License for more details.                         *
27  *                                                                      *
28  * You should have received a copy of the GNU General Public License    *
29  * along with this program; if not, write to the Free Software          *
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
31  * MA  02110-1301  USA                                                  *
32  ************************************************************************/
33
34 // Some security stuff...
35 if (ereg(basename(__FILE__), $_SERVER['PHP_SELF']))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40  elseif (!IS_LOGGED_IN())
41 {
42         LOAD_URL("modules.php?module=index");
43 }
44
45 // Add description as navigation point
46 ADD_DESCR("member", basename(__FILE__));
47
48 //                               0     1         2         3      4            5            6            7           8
49 $result = SQL_QUERY_ESC("SELECT id, cat_id, payment_id, subject, url, timestamp_ordered, max_rec, timestamp_send, clicks
50 FROM "._MYSQL_PREFIX."_user_stats
51 WHERE userid=%d ORDER BY timestamp_ordered DESC",
52  array($GLOBALS['userid']), __FILE__, __LINE__);
53
54 if (SQL_NUMROWS($result) > 0)
55 {
56         // Mail orders are in pool so we can display them
57         $SW = 2; $OUT = "";
58         while ($pool = SQL_FETCHROW($result))
59         {
60                 // Prepare data for the template
61                 $content = array(
62                         'sw'    => $SW,
63                         'cat'   => GET_CATEGORY(bigintval($pool[1])),
64                         'pay'   => GET_PAYMENT(bigintval($pool[2])),
65                         'subj'  => COMPILE_CODE($pool[3]),
66                         'url'   => DEREFERER($pool[4]),
67                         'stamp' => MAKE_DATETIME($pool[5], "0"),
68                         'recs'  => $pool[6],
69                         'sent'  => MAKE_DATETIME($pool[7], "0"),
70                         'clix'  => $pool[8],
71                         'perc'  => COMPILE_CODE($pool[8] / $pool[6] * 100)."%",
72                 );
73
74                 // Load row template and switch colors
75                 $OUT .= LOAD_TEMPLATE("member_stats_row", true, $content);
76                 $SW = 3 - $SW;
77         }
78
79         // Free memory
80         SQL_FREERESULT($result);
81
82         // Remember rows in template
83         define('__STATS_ROWS', $OUT);
84
85         // Load main template
86         LOAD_TEMPLATE("member_stats_table");
87 }
88  else
89 {
90         // No mail orders fond
91         LOAD_TEMPLATE("admin_settings_saved", false, MEMBER_NO_MAILS_IN_POOL);
92 }
93
94 //
95 ?>