Several constant fixes
[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 ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
36 {
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
38         require($INC);
39 }
40
41 // Add description as navigation point
42 ADD_DESCR("admin", basename(__FILE__));
43
44 // If var is empty set it to empty
45 if (empty($_GET['mod'])) $_GET['mod'] = "";
46
47 // Check if module was selected
48 if (($_GET['mod'] == "index") || ($_GET['mod'] == "login"))
49 {
50         // Select menu system
51         $mod = "";
52         switch ($_GET['mod'])
53         {
54                 case "index": $mod = "guest" ; break;
55                 case "login": $mod = "member"; break;
56         }
57
58         // Load module's detail statistic
59         $result = SQL_QUERY("SELECT action, title, counter FROM "._MYSQL_PREFIX."_".$mod."_menu WHERE what != '' ORDER BY counter DESC", __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 }
85  else
86 {
87         // Load module statics
88         $result = SQL_QUERY("SELECT module, title, clicks FROM "._MYSQL_PREFIX."_mod_reg ORDER BY clicks DESC, module", __FILE__, __LINE__);
89         $SW = 2; $OUT = "";
90         while(list($mod, $title, $clicks) = SQL_FETCHROW($result))
91         {
92                 if (empty($title)) $title = "---";
93                 if (($mod == "index") || ($mod == "login"))
94                 {
95                         // Add link to detail statistics
96                         $mod = "<STRONG><A href=\"".URL."/modules.php?module=admin&amp;what=stats_mods&amp;mod=".$mod."\">".$mod."</A></STRONG>";
97                 }
98                 // Prepare array for the template
99                 $content = array(
100                         'sw'     => $SW,
101                         'title'  => $title,
102                         'mod'    => $mod,
103                         'clicks' => $clicks,
104                 );
105
106                 // Load row template
107                 $OUT .= LOAD_TEMPLATE("admin_mods_stats_row", true, $content);
108         }
109
110         // Free memory
111         SQL_FREERESULT($result);
112         define('__MODS_ROWS', $OUT);
113
114         // Load final template
115         LOAD_TEMPLATE("admin_mods_stats");
116 }
117 //
118 ?>