Mahor rewrite:
[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("SELECT action, title, counter FROM "._MYSQL_PREFIX."_".$mod."_menu WHERE what != '' ORDER BY counter DESC", __FILE__, __LINE__);
59         $SW = 2; $OUT = "";
60         while(list($act, $title, $clicks) = SQL_FETCHROW($result))
61         {
62                 // Prepare array for the template
63                 $content = array(
64                         'sw'     => $SW,
65                         'title'  => $title,
66                         'action' => $act,
67                         'clicks' => $clicks,
68                 );
69
70                 // Load row template
71                 $OUT .= LOAD_TEMPLATE("admin_mods_stats2_row", true, $content);
72
73                 // Switch colors
74                 $SW = 3 - $SW;
75         }
76
77         // Free memory
78         SQL_FREERESULT($result);
79         define('__MODS_ROWS', $OUT);
80
81         // Load final template
82         LOAD_TEMPLATE("admin_mods_stats2");
83 }
84  else
85 {
86         // Load module statics
87         $result = SQL_QUERY("SELECT module, title, clicks FROM "._MYSQL_PREFIX."_mod_reg ORDER BY clicks DESC, module", __FILE__, __LINE__);
88         $SW = 2; $OUT = "";
89         while(list($mod, $title, $clicks) = SQL_FETCHROW($result))
90         {
91                 if (empty($title)) $title = "---";
92                 if (($mod == "index") || ($mod == "login"))
93                 {
94                         // Add link to detail statistics
95                         $mod = "<STRONG><A href=\"".URL."/modules.php?module=admin&amp;what=stats_mods&amp;mod=".$mod."\">".$mod."</A></STRONG>";
96                 }
97                 // Prepare array for the template
98                 $content = array(
99                         'sw'     => $SW,
100                         'title'  => $title,
101                         'mod'    => $mod,
102                         'clicks' => $clicks,
103                 );
104
105                 // Load row template
106                 $OUT .= LOAD_TEMPLATE("admin_mods_stats_row", true, $content);
107         }
108
109         // Free memory
110         SQL_FREERESULT($result);
111         define('__MODS_ROWS', $OUT);
112
113         // Load final template
114         LOAD_TEMPLATE("admin_mods_stats");
115 }
116 //
117 ?>