Comments fixed, ext-network continued, fix for mod stats:
[mailer.git] / inc / modules / admin / what-stats_mods.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                Start: 08/27/2004 *
4  * ===================                          Last change: 08/27/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-stats_mods.php                              *
8  * -------------------------------------------------------------------- *
9  * Short description : Module statistics                                *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Modul-Statistiken                                *
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  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if ((!defined('__SECURITY')) || (!isAdmin())) {
41         die();
42 }
43
44 // Add description as navigation point
45 addMenuDescription('admin', __FILE__);
46
47 // If var is empty set it to empty
48 if (!isGetRequestElementSet('mod')) setRequestGetElement('mod', '');
49
50 // Check if module was selected
51 if ((getRequestElement('mod') == 'index') || (getRequestElement('mod') == 'login')) {
52         // Select menu system
53         $mod = mapModuleToTable(getRequestElement('mod'));
54
55         // Load module's detail statistic
56         $result = SQL_QUERY_ESC("SELECT `action`, `title`, `counter` FROM `{?_MYSQL_PREFIX?}_%s_menu` WHERE `what` != '' AND `what` IS NOT NULL ORDER BY `counter` DESC",
57                 array($mod), __FILE__, __LINE__);
58         $OUT = ''; $SW = 2;
59         while ($content = SQL_FETCHARRAY($result)) {
60                 // Add color switch
61                 $content['sw'] = $SW;
62
63                 // Load row template
64                 $OUT .= loadTemplate('admin_mods_stats2_row', true, $content);
65
66                 // Switch colors
67                 $SW = 3 - $SW;
68         } // END - while
69
70         // Free memory
71         SQL_FREERESULT($result);
72
73         // Load final template
74         loadTemplate('admin_mods_stats2', false, $OUT);
75 } else {
76         // Load module statics
77         $result = SQL_QUERY("SELECT `module`, `title`, `clicks` FROM `{?_MYSQL_PREFIX?}_mod_reg` ORDER BY `clicks` DESC, `module` ASC", __FILE__, __LINE__);
78         $OUT = ''; $SW = 2;
79         while ($content = SQL_FETCHARRAY($result)) {
80                 if (empty($content['title'])) $content['title'] = '---';
81
82                 if (($content['module'] == 'index') || ($content['module'] == 'login')) {
83                         // Add link to detail statistics
84                         $content['module'] = "<strong><a href=\"{?URL?}/modules.php?module=admin&amp;what=stats_mods&amp;mod=".$content['module']."\">".$content['module']."</a></strong>";
85                 } // END - if
86
87                 // Add color switch
88                 $content['sw'] = $SW;
89
90                 // Load row template
91                 $OUT .= loadTemplate('admin_mods_stats_row', true, $content);
92         } // END - while
93
94         // Free memory
95         SQL_FREERESULT($result);
96
97         // Load final template
98         loadTemplate('admin_mods_stats', false, $OUT);
99 }
100
101 // [EOF]
102 ?>