Complete rewrite of and , wrapper functions added, see bug #101
[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  *                                                                      *
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 ((!defined('__SECURITY')) || (!IS_ADMIN())) {
36         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
37         require($INC);
38 }
39
40 // Add description as navigation point
41 ADD_DESCR("admin", __FILE__);
42
43 // If var is empty set it to empty
44 if (!REQUEST_ISSET_GET(('mod'))) REQUEST_SET_GET('mod', "");
45
46 // Check if module was selected
47 if ((REQUEST_GET('mod') == "index") || (REQUEST_GET('mod') == "login")) {
48         // Select menu system
49         $mod = "";
50         switch (REQUEST_GET('mod')) {
51                 case "index": $mod = "guest" ; break;
52                 case "login": $mod = "member"; break;
53         }
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         $SW = 2; $OUT = "";
59         while (list($act, $title, $clicks) = SQL_FETCHROW($result)) {
60                 // Prepare array for the template
61                 $content = array(
62                         'sw'     => $SW,
63                         'title'  => $title,
64                         'action' => $act,
65                         'clicks' => $clicks,
66                 );
67
68                 // Load row template
69                 $OUT .= LOAD_TEMPLATE("admin_mods_stats2_row", true, $content);
70
71                 // Switch colors
72                 $SW = 3 - $SW;
73         }
74
75         // Free memory
76         SQL_FREERESULT($result);
77         define('__MODS_ROWS', $OUT);
78
79         // Load final template
80         LOAD_TEMPLATE("admin_mods_stats2");
81 } else {
82         // Load module statics
83         $result = SQL_QUERY("SELECT module, title, clicks FROM `{!_MYSQL_PREFIX!}_mod_reg` ORDER BY clicks DESC, module", __FILE__, __LINE__);
84         $SW = 2; $OUT = "";
85         while (list($mod, $title, $clicks) = SQL_FETCHROW($result)) {
86                 if (empty($title)) $title = "---";
87                 if (($mod == "index") || ($mod == "login"))
88                 {
89                         // Add link to detail statistics
90                         $mod = "<strong><a href=\"{!URL!}/modules.php?module=admin&amp;what=stats_mods&amp;mod=".$mod."\">".$mod."</a></strong>";
91                 }
92                 // Prepare array for the template
93                 $content = array(
94                         'sw'     => $SW,
95                         'title'  => $title,
96                         'mod'    => $mod,
97                         'clicks' => $clicks,
98                 );
99
100                 // Load row template
101                 $OUT .= LOAD_TEMPLATE("admin_mods_stats_row", true, $content);
102         }
103
104         // Free memory
105         SQL_FREERESULT($result);
106         define('__MODS_ROWS', $OUT);
107
108         // Load final template
109         LOAD_TEMPLATE("admin_mods_stats");
110 }
111
112 //
113 ?>