]> git.mxchange.org Git - mailer.git/blob - inc/modules/admin/what-stats_mods.php
A lot while() conditions rewritten to SQL_FETCHARRAY(), see bug #107, @TODO tags...
[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                 default: // Unknown
54                         DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown mod %s detected.", REQUEST_GET('mod')));
55                         break;
56         } // END - switch
57
58         // Load module's detail statistic
59         $result = SQL_QUERY_ESC("SELECT action, title, counter FROM `{!_MYSQL_PREFIX!}_%s_menu` WHERE `what` != '' AND `what` IS NOT NULL ORDER BY counter DESC",
60                 array($mod), __FILE__, __LINE__);
61         $OUT = ""; $SW = 2;
62         while ($content = SQL_FETCHARRAY($result)) {
63                 // Add color switch
64                 $content['sw'] = $SW;
65
66                 // Load row template
67                 $OUT .= LOAD_TEMPLATE("admin_mods_stats2_row", true, $content);
68
69                 // Switch colors
70                 $SW = 3 - $SW;
71         } // END - while
72
73         // Free memory
74         SQL_FREERESULT($result);
75         define('__MODS_ROWS', $OUT);
76
77         // Load final template
78         LOAD_TEMPLATE("admin_mods_stats2");
79 } else {
80         // Load module statics
81         $result = SQL_QUERY("SELECT module, title, clicks FROM `{!_MYSQL_PREFIX!}_mod_reg` ORDER BY clicks DESC, module", __FILE__, __LINE__);
82         $OUT = ""; $SW = 2;
83         while ($content = SQL_FETCHARRAY($result)) {
84                 if (empty($content['title'])) $content['title'] = "---";
85
86                 if (($content['module'] == "index") || ($content['module'] == "login")) {
87                         // Add link to detail statistics
88                         $content['module'] = "<strong><a href=\"{!URL!}/modules.php?module=admin&amp;what=stats_mods&amp;mod=".$content['module']."\">".$content['module']."</a></strong>";
89                 } // END - if
90
91                 // Add color switch
92                 $content['sw'] = $SW;
93
94                 // Load row template
95                 $OUT .= LOAD_TEMPLATE("admin_mods_stats_row", true, $content);
96         } // END - while
97
98         // Free memory
99         SQL_FREERESULT($result);
100         define('__MODS_ROWS', $OUT);
101
102         // Load final template
103         LOAD_TEMPLATE("admin_mods_stats");
104 }
105
106 //
107 ?>