58fabb982b1956e7759d9dc20f15b18bc809e437
[mailer.git] / inc / modules / admin / what-surfbar_stats.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 09/09/2008 *
4  * ===================                          Last change: 09/09/2008 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-surfbar_stats.php                           *
8  * -------------------------------------------------------------------- *
9  * Short description : Surfbar URL statistics                           *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : URL-Statistiken fuer die Surfbar                 *
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')) || (!isAdmin())) {
42         die();
43 }
44
45 // Add description as navigation point
46 addMenuDescription('admin', __FILE__);
47
48 // Is the 'url_id' set?
49 if (isGetRequestParameterSet(('url_id'))) {
50         // Generate general statistics
51         $result = SQL_QUERY_ESC("SELECT `userid`,`count` AS `total_visits`, UNIX_TIMESTAMP(`last_surfed`) AS `last_surfed`
52 FROM `{?_MYSQL_PREFIX?}_surfbar_stats`
53 WHERE `url_id`=%s
54 ORDER BY `userid` ASC",
55         array(bigintval(getRequestParameter('url_id'))), __FILE__, __LINE__);
56
57         // Entries found?
58         if (SQL_NUMROWS($result) > 0) {
59                 // Get all rows
60                 $OUT = ''; $SW = 2; $cnt = '0'; $visits = '0';
61                 while ($content = SQL_FETCHARRAY($result)) {
62                         // Count totals
63                         $visits += $content['total_visits'];
64
65                         // "Translate" some data
66                         $content['userid']       = generateUserProfileLink($content['userid']);
67                         $content['total_visits'] = translateComma($content['total_visits']);
68                         $content['last_surfed']  = generateDateTime($content['last_surfed'], 2);
69                         $content['sw']           = $SW;
70
71                         // Load row template
72                         $OUT .= loadTemplate('admin_surfbar_url_stats_row', true, $content);
73                         $cnt++; $SW = 3 - $SW;
74                 } // END - while
75
76                 // Prepare content
77                 $content = array(
78                         'rows'    => $OUT,
79                         'userids' => $cnt,
80                         'visits'  => $visits
81                 );
82
83
84                 // Load main template
85                 loadTemplate('admin_surfbar_url_stats', false, $content);
86         } else {
87                 // No statistics so far
88                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_NO_URL_STATS'));
89         }
90 } else {
91         // Generate general statistics
92         $result = SQL_QUERY("SELECT
93         `userid`, COUNT(`url_id`) AS `visited_urls`, SUM(`count`) AS `total_visits`
94 FROM
95         `{?_MYSQL_PREFIX?}_surfbar_stats`
96 GROUP BY
97         `userid`
98 ORDER BY
99         `userid` ASC", __FILE__, __LINE__);
100
101         // Entries found?
102         if (SQL_NUMROWS($result) > 0) {
103                 // Get all rows
104                 $OUT = ''; $SW = 2; $urls = '0'; $visits = '0';
105                 while ($content = SQL_FETCHARRAY($result)) {
106                         // Count totals
107                         $urls   += $content['visited_urls'];
108                         $visits += $content['total_visits'];
109
110                         // "Translate" some data
111                         $content['userid']       = generateUserProfileLink($content['userid']);
112                         $content['visited_urls'] = translateComma($content['visited_urls']);
113                         $content['total_visits'] = translateComma($content['total_visits']);
114                         $content['sw']           = $SW;
115
116                         // Load row template
117                         $OUT .= loadTemplate('admin_surfbar_stats_row', true, $content);
118                         $SW = 3 - $SW;
119                 } // END - while
120
121                 // Prepare content
122                 $content = array(
123                         'rows'   => $OUT,
124                         'urls'   => $urls,
125                         'visits' => $visits
126                 );
127
128
129                 // Load main template
130                 loadTemplate('admin_surfbar_stats', false, $content);
131         } else {
132                 // No statistics so far
133                 loadTemplate('admin_settings_saved', false, getMessage('ADMIN_SURFBAR_NO_STATS'));
134         }
135 }
136
137 // Free result
138 SQL_FREERESULT($result);
139
140 //
141 ?>