More improved SQL queries
[mailer.git] / inc / modules / guest / what-stats.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 12/14/2003 *
4  * ================                             Last change: 08/22/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-stats.php                                   *
8  * -------------------------------------------------------------------- *
9  * Short description : Statistics                                       *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : 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')) {
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("guest", __FILE__);
42
43 // Derterminate which stats we want and set mode and title for the link below stats block
44 if (!isset($_GET['mode'])) $_GET['mode'] = strtolower(getConfig('guest_stats'));
45 switch ($_GET['mode']) {
46         case "members" : $_CONFIG['guest_stats'] = "MEMBERS"; $lmode = "modules"; $ltitle = GUEST_STATS_MODULES; break;
47         case "modules" : $_CONFIG['guest_stats'] = "MODULES"; $lmode = "members"; $ltitle = GUEST_STATS_MEMBERS; break;
48         case "inactive": $_CONFIG['guest_stats'] = "INACTIVE"; $lmode = "inactive"; $ltitle = GUEST_STATS_INACTIVE; break;
49 }
50
51 switch (getConfig('guest_stats'))
52 {
53 case "MEMBERS": // Statistics about your members
54         // Members yesterday / today online
55         $ymem = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE last_online >= ".START_YDAY." AND last_online < ".START_TDAY." AND `status`='CONFIRMED'", __FILE__, __LINE__));
56         $tmem = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE last_online >= ".START_TDAY." AND `status`='CONFIRMED'", __FILE__, __LINE__));
57
58         // Yesterday / today registered
59         $yreg = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE joined >= ".START_YDAY." AND joined < ".START_TDAY, __FILE__, __LINE__));
60         $treg = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE joined >= ".START_TDAY, __FILE__, __LINE__));
61
62         // Only males / females
63         $male   = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE gender='M' AND `status`='CONFIRMED'", __FILE__, __LINE__));
64         $female = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE gender='F' AND `status`='CONFIRMED'", __FILE__, __LINE__));
65
66         // Unconfirmed accounts
67         $unconfirmed = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE status != 'CONFIRMED'", __FILE__, __LINE__));
68
69         // Total members
70         $total = $male + $female;
71
72         // List every month
73         $months = array();
74         for ($idx = 1; $idx < 13; $idx++)
75         {
76                 $month = $idx; if ($idx < 10) $month = "0".$idx;
77                 $months[$month] = SQL_NUMROWS(SQL_QUERY_ESC("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE birth_month=%s AND `status`='CONFIRMED'",
78                  array(bigintval($month)), __FILE__, __LINE__));
79         }
80
81         // Members in categories
82         $result = SQL_QUERY("SELECT id, cat FROM `{!_MYSQL_PREFIX!}_cats` WHERE `visible`='Y' ORDER BY `id`", __FILE__, __LINE__);
83
84         // Load categories first
85         $cats = array(); $cat_cnt = array();
86         while (list($id, $cat) = SQL_FETCHROW($result)) {
87                 // Simple...
88                 $cats[$id] = $cat;
89         }
90
91         // Now we have all categories loaded, count members
92         foreach ($cats as $id => $dummy) {
93                 // We only need id and nothing more to count...
94                 $cat_cnt[$id] = SQL_NUMROWS(SQL_QUERY_ESC("SELECT id FROM `{!_MYSQL_PREFIX!}_user_cats` WHERE cat_id=%s",
95                         array(bigintval($id)), __FILE__, __LINE__));
96         }
97
98         // Prepare data for the template
99         define('__TOTAL_USERS' , $total);
100         define('__UNCONFIRMED' , $unconfirmed);
101         define('__MALE_COUNT'  , $male);
102         define('__FEMALE_COUNT', $female);
103         define('__TMEM_COUNT'  , $tmem);
104         define('__YMEM_COUNT'  , $ymem);
105         define('__TREG_COUNT'  , $treg);
106         define('__YREG_COUNT'  , $yreg);
107         define('__LMODE_VALUE' , $lmode);
108         define('__LINK_TITLE'  , $ltitle);
109
110         // Generate monthly stats
111         $SW = 2; $r2 = " right2"; $l = "ll"; $r = "lr"; $OUT = "";
112         foreach ($months as $month => $cnt)
113         {
114                 if ($SW == 2) $OUT .= "<tr>\n";
115
116                 // Prepare data for template
117                 $content = array(
118                         'l_class'  => $l,
119                         'm_descr'  => $MONTH_DESCR[$month],
120                         'r_class'  => $r,
121                         'r2_class' => $r2,
122                         'cnt'      => $cnt
123                 );
124
125                 // Load row template
126                 $OUT .= LOAD_TEMPLATE("guest_stats_month_row", true, $content);
127
128                 if ($SW == 2)
129                 {
130                         $r2 = "";
131                         $l = "rl"; $r = "rr";
132                 }
133                  else
134                 {
135                         $OUT .= "</tr>\n";
136                         $r2 = " right2";
137                         $l = "ll"; $r = "lr";
138                 }
139                 $SW = 3 - $SW;
140         }
141         define('__MONTH_STATS_ROWS', $OUT);
142
143         // Generate category stats
144         $SW = 2; $OUT = "";
145         foreach ($cat_cnt as $id => $cnt)
146         {
147                 // Prepare data for the template
148                 $content = array(
149                         'sw'  => $SW,
150                         'cat' => $cats[$id],
151                         'cnt' => $cnt,
152                 );
153
154                 // Load row template and switch colors
155                 $OUT .= LOAD_TEMPLATE("guest_stats_cats_row", true, $content);
156                 $SW = 3 - $SW;
157         }
158         define('__CATS_STATS_ROWS', $OUT);
159
160         // Load final template
161         LOAD_TEMPLATE("guest_stats_member");
162         break;
163
164 case "MODULES": // TOP10 module clicks
165         $AND = "";
166         if (!IS_ADMIN()) $AND = " AND `locked`='N' AND `visible`='Y'";
167         $guest_t10 = SQL_QUERY("SELECT counter, title FROM `{!_MYSQL_PREFIX!}_guest_menu` WHERE counter > 0".$AND." ORDER BY counter DESC LIMIT 0,10", __FILE__, __LINE__);
168         $mem_t10   = SQL_QUERY("SELECT counter, title FROM `{!_MYSQL_PREFIX!}_member_menu` WHERE counter > 0".$AND." ORDER BY counter DESC LIMIT 0,10", __FILE__, __LINE__);
169         if ((SQL_NUMROWS($guest_t10) > 0) || (SQL_NUMROWS($mem_t10) > 0)) {
170                 // Output header
171                 OUTPUT_HTML("<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"guest_table dashed\" width=\"310\">
172 <tr>
173   <td align=\"center\" class=\"guest_stats_title bottom2\" colspan=\"2\"><strong>{!GUEST_TOPTEN_STATS!}</strong></td>
174 </tr>");
175         }
176
177         if (SQL_NUMROWS($guest_t10) > 0) {
178                 // Guest clicks
179                 OUTPUT_HTML("<tr>
180   <td align=\"center\" class=\"guest_title2 bottom2\" colspan=\"2\">".GUEST_TOP_GUEST_STATS."</td>
181 </tr>");
182                 $SW = 2;
183                 while (list($clicks, $title) = SQL_FETCHROW($guest_t10)) {
184                         OUTPUT_HTML("<tr>
185   <td class=\"switch_sw".$SW." bottom2 right2\" align=\"right\" width=\"250\">".$title."&nbsp;</td>
186   <td class=\"switch_sw".$SW." bottom2\" width=\"50\">&nbsp;".$clicks."</td>
187 </tr>");
188                         $SW = 3 - $SW;
189                 }
190         }
191
192         if (SQL_NUMROWS($guest_t10) > 0) {
193                 // Guest clicks
194                 OUTPUT_HTML("<tr>
195   <td align=\"center\" class=\"guest_title2 bottom2\" colspan=\"2\">".GUEST_TOP_MEMBER_STATS."</td>
196 </tr>");
197                 $SW = 2;
198                 while (list($clicks, $title) = SQL_FETCHROW($mem_t10)) {
199                         OUTPUT_HTML("<tr>
200   <td class=\"switch_sw".$SW." bottom2 right2\" align=\"right\" width=\"250\">".$title."&nbsp;</td>
201   <td class=\"switch_sw".$SW." bottom2\" width=\"50\">&nbsp;".$clicks."</td>
202 </tr>");
203                         $SW = 3 - $SW;
204                 }
205         }
206
207         if ((SQL_NUMROWS($guest_t10) > 0) || (SQL_NUMROWS($mem_t10) > 0)) {
208                 // Output footer
209                 OUTPUT_HTML("<tr>
210   <td align=\"center\" class=\"guest_stats_footer\" colspan=\"2\"><a href=\"{!URL!}/modules.php?module=index&amp;what=stats&amp;mode=".$lmode."\">".$ltitle."</a></td>
211 </tr>
212 </table>");
213         }
214         break;
215
216 case "INACTIVE": // Deactivated stats
217         LOAD_TEMPLATE("admin_settings_saved", false, "<strong>".GUEST_STATS_DEACTIVATED."</strong>");
218         break;
219 }
220
221 //
222 ?>