Damn typo fixed... ;-)
[mailer.git] / inc / modules / admin / what-stats_mods.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    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 - 2008 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')) || (!IS_ADMIN())) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
42         require($INC);
43 }
44
45 // Add description as navigation point
46 ADD_DESCR("admin", __FILE__);
47
48 // If var is empty set it to empty
49 if (!REQUEST_ISSET_GET('mod')) REQUEST_SET_GET('mod', "");
50
51 // Check if module was selected
52 if ((REQUEST_GET('mod') == "index") || (REQUEST_GET('mod') == "login")) {
53         // Select menu system
54         $mod = "";
55         switch (REQUEST_GET('mod')) {
56                 case "index": $mod = "guest" ; break;
57                 case "login": $mod = "member"; break;
58                 default: // Unknown
59                         DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown mod %s detected.", REQUEST_GET('mod')));
60                         break;
61         } // END - switch
62
63         // Load module's detail statistic
64         $result = SQL_QUERY_ESC("SELECT action, title, counter FROM `{!_MYSQL_PREFIX!}_%s_menu` WHERE `what` != '' AND `what` IS NOT NULL ORDER BY counter DESC",
65                 array($mod), __FILE__, __LINE__);
66         $OUT = ""; $SW = 2;
67         while ($content = SQL_FETCHARRAY($result)) {
68                 // Add color switch
69                 $content['sw'] = $SW;
70
71                 // Load row template
72                 $OUT .= LOAD_TEMPLATE("admin_mods_stats2_row", true, $content);
73
74                 // Switch colors
75                 $SW = 3 - $SW;
76         } // END - while
77
78         // Free memory
79         SQL_FREERESULT($result);
80         define('__MODS_ROWS', $OUT);
81
82         // Load final template
83         LOAD_TEMPLATE("admin_mods_stats2");
84 } else {
85         // Load module statics
86         $result = SQL_QUERY("SELECT module, title, clicks FROM `{!_MYSQL_PREFIX!}_mod_reg` ORDER BY clicks DESC, module", __FILE__, __LINE__);
87         $OUT = ""; $SW = 2;
88         while ($content = SQL_FETCHARRAY($result)) {
89                 if (empty($content['title'])) $content['title'] = "---";
90
91                 if (($content['module'] == "index") || ($content['module'] == "login")) {
92                         // Add link to detail statistics
93                         $content['module'] = "<strong><a href=\"{!URL!}/modules.php?module=admin&amp;what=stats_mods&amp;mod=".$content['module']."\">".$content['module']."</a></strong>";
94                 } // END - if
95
96                 // Add color switch
97                 $content['sw'] = $SW;
98
99                 // Load row template
100                 $OUT .= LOAD_TEMPLATE("admin_mods_stats_row", true, $content);
101         } // END - while
102
103         // Free memory
104         SQL_FREERESULT($result);
105         define('__MODS_ROWS', $OUT);
106
107         // Load final template
108         LOAD_TEMPLATE("admin_mods_stats");
109 }
110
111 //
112 ?>