Code rewritings, load base config improved and many minor fixes...
[mailer.git] / 0.2.1 / inc / modules / admin / what-stats_mods.php
1 <?php\r
2 /************************************************************************\r
3  * MXChange v0.2.1                                    Start: 08/27/2004 *\r
4  * ================                             Last change: 08/27/2004 *\r
5  *                                                                      *\r
6  * -------------------------------------------------------------------- *\r
7  * File              : what-stats_mods.php                              *\r
8  * -------------------------------------------------------------------- *\r
9  * Short description : Module statistics                                *\r
10  * -------------------------------------------------------------------- *\r
11  * Kurzbeschreibung  : Modul-Statistiken                                *\r
12  * -------------------------------------------------------------------- *\r
13  *                                                                      *\r
14  * -------------------------------------------------------------------- *\r
15  * Copyright (c) 2003 - 2008 by Roland Haeder                           *\r
16  * For more information visit: http://www.mxchange.org                  *\r
17  *                                                                      *\r
18  * This program is free software; you can redistribute it and/or modify *\r
19  * it under the terms of the GNU General Public License as published by *\r
20  * the Free Software Foundation; either version 2 of the License, or    *\r
21  * (at your option) any later version.                                  *\r
22  *                                                                      *\r
23  * This program is distributed in the hope that it will be useful,      *\r
24  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *\r
25  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *\r
26  * GNU General Public License for more details.                         *\r
27  *                                                                      *\r
28  * You should have received a copy of the GNU General Public License    *\r
29  * along with this program; if not, write to the Free Software          *\r
30  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *\r
31  * MA  02110-1301  USA                                                  *\r
32  ************************************************************************/\r
33 \r
34 // Some security stuff...\r
35 if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))\r
36 {\r
37         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";\r
38         require($INC);\r
39 }\r
40 \r
41 // Add description as navigation point\r
42 ADD_DESCR("admin", basename(__FILE__));\r
43 \r
44 // If var is empty set it to empty\r
45 if (empty($_GET['mod'])) $_GET['mod'] = "";\r
46 \r
47 // Check if module was selected\r
48 if (($_GET['mod'] == "index") || ($_GET['mod'] == "login"))\r
49 {\r
50         // Select menu system\r
51         $mod = "";\r
52         switch ($_GET['mod'])\r
53         {\r
54                 case "index": $mod = "guest" ; break;\r
55                 case "login": $mod = "member"; break;\r
56         }\r
57 \r
58         // Load module's detail statistic\r
59         $result = SQL_QUERY("SELECT action, title, counter FROM "._MYSQL_PREFIX."_".$mod."_menu WHERE what != '' ORDER BY counter DESC", __FILE__, __LINE__);\r
60         $SW = 2; $OUT = "";\r
61         while(list($act, $title, $clicks) = SQL_FETCHROW($result))\r
62         {\r
63                 // Prepare array for the template\r
64                 $content = array(\r
65                         'sw'     => $SW,\r
66                         'title'  => $title,\r
67                         'action' => $act,\r
68                         'clicks' => $clicks,\r
69                 );\r
70 \r
71                 // Load row template\r
72                 $OUT .= LOAD_TEMPLATE("admin_mods_stats2_row", true, $content);\r
73 \r
74                 // Switch colors\r
75                 $SW = 3 - $SW;\r
76         }\r
77 \r
78         // Free memory\r
79         SQL_FREERESULT($result);\r
80         define('__MODS_ROWS', $OUT);\r
81 \r
82         // Load final template\r
83         LOAD_TEMPLATE("admin_mods_stats2");\r
84 }\r
85  else\r
86 {\r
87         // Load module statics\r
88         $result = SQL_QUERY("SELECT module, title, clicks FROM "._MYSQL_PREFIX."_mod_reg ORDER BY clicks DESC, module", __FILE__, __LINE__);\r
89         $SW = 2; $OUT = "";\r
90         while(list($mod, $title, $clicks) = SQL_FETCHROW($result))\r
91         {\r
92                 if (empty($title)) $title = "---";\r
93                 if (($mod == "index") || ($mod == "login"))\r
94                 {\r
95                         // Add link to detail statistics\r
96                         $mod = "<STRONG><A href=\"".URL."/modules.php?module=admin&amp;what=stats_mods&amp;mod=".$mod."\">".$mod."</A></STRONG>";\r
97                 }\r
98                 // Prepare array for the template\r
99                 $content = array(\r
100                         'sw'     => $SW,\r
101                         'title'  => $title,\r
102                         'mod'    => $mod,\r
103                         'clicks' => $clicks,\r
104                 );\r
105 \r
106                 // Load row template\r
107                 $OUT .= LOAD_TEMPLATE("admin_mods_stats_row", true, $content);\r
108         }\r
109 \r
110         // Free memory\r
111         SQL_FREERESULT($result);\r
112         define('__MODS_ROWS', $OUT);\r
113 \r
114         // Load final template\r
115         LOAD_TEMPLATE("admin_mods_stats");\r
116 }\r
117 //\r
118 ?>\r