Previous fix fixed, a lot constants rewritten (unfinished)
[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 (empty($_GET['mod'])) $_GET['mod'] = "";
45
46 // Check if module was selected
47 if (($_GET['mod'] == "index") || ($_GET['mod'] == "login"))
48 {
49         // Select menu system
50         $mod = "";
51         switch ($_GET['mod'])
52         {
53                 case "index": $mod = "guest" ; break;
54                 case "login": $mod = "member"; break;
55         }
56
57         // Load module's detail statistic
58         $result = SQL_QUERY_ESC("SELECT action, title, counter FROM `{!_MYSQL_PREFIX!}_%s_menu` WHERE `what` != '' AND `what` IS NOT NULL ORDER BY counter DESC",
59                 array($mod), __FILE__, __LINE__);
60         $SW = 2; $OUT = "";
61         while (list($act, $title, $clicks) = SQL_FETCHROW($result))
62         {
63                 // Prepare array for the template
64                 $content = array(
65                         'sw'     => $SW,
66                         'title'  => $title,
67                         'action' => $act,
68                         'clicks' => $clicks,
69                 );
70
71                 // Load row template
72                 $OUT .= LOAD_TEMPLATE("admin_mods_stats2_row", true, $content);
73
74                 // Switch colors
75                 $SW = 3 - $SW;
76         }
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         $SW = 2; $OUT = "";
88         while (list($mod, $title, $clicks) = SQL_FETCHROW($result)) {
89                 if (empty($title)) $title = "---";
90                 if (($mod == "index") || ($mod == "login"))
91                 {
92                         // Add link to detail statistics
93                         $mod = "<strong><a href=\"{!URL!}/modules.php?module=admin&amp;what=stats_mods&amp;mod=".$mod."\">".$mod."</a></strong>";
94                 }
95                 // Prepare array for the template
96                 $content = array(
97                         'sw'     => $SW,
98                         'title'  => $title,
99                         'mod'    => $mod,
100                         'clicks' => $clicks,
101                 );
102
103                 // Load row template
104                 $OUT .= LOAD_TEMPLATE("admin_mods_stats_row", true, $content);
105         }
106
107         // Free memory
108         SQL_FREERESULT($result);
109         define('__MODS_ROWS', $OUT);
110
111         // Load final template
112         LOAD_TEMPLATE("admin_mods_stats");
113 }
114 //
115 ?>