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