1be2f8e639d7ba4c9d80394136c4c5b9645ffe46
[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 (!REQUEST_ISSET_GET(('mode'))) REQUEST_SET_GET('mode', strtolower(getConfig('guest_stats')));
45
46 switch (REQUEST_GET('mode')) {
47         case "members" :
48                 setConfigEntry('guest_stats', "MEMBERS");
49                 $lmode = "modules";
50                 $ltitle = getMessage('GUEST_STATS_MODULES');
51                 break;
52
53         case "modules" :
54                 setConfigEntry('guest_stats', "MODULES");
55                 $lmode = "members";
56                 $ltitle = getMessage('GUEST_STATS_MEMBERS');
57                 break;
58
59         case "inactive":
60                 setConfigEntry('guest_stats', "INACTIVE");
61                 $lmode = "inactive";
62                 $ltitle = getMessage('GUEST_STATS_INACTIVE');
63                 break;
64 }
65
66 switch (getConfig('guest_stats'))
67 {
68 case "MEMBERS": // Statistics about your members
69         // Members yesterday / today online
70         $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__));
71         $tmem = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE last_online >= ".START_TDAY." AND `status`='CONFIRMED'", __FILE__, __LINE__));
72
73         // Yesterday / today registered
74         $yreg = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE joined >= ".START_YDAY." AND joined < ".START_TDAY, __FILE__, __LINE__));
75         $treg = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE joined >= ".START_TDAY, __FILE__, __LINE__));
76
77         // Only males / females
78         $male   = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE gender='M' AND `status`='CONFIRMED'", __FILE__, __LINE__));
79         $female = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE gender='F' AND `status`='CONFIRMED'", __FILE__, __LINE__));
80
81         // Unconfirmed accounts
82         $unconfirmed = SQL_NUMROWS(SQL_QUERY("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE status != 'CONFIRMED'", __FILE__, __LINE__));
83
84         // Total members
85         $total = $male + $female;
86
87         // List every month
88         $months = array();
89         for ($idx = 1; $idx < 13; $idx++)
90         {
91                 $month = $idx; if ($idx < 10) $month = "0".$idx;
92                 $months[$month] = SQL_NUMROWS(SQL_QUERY_ESC("SELECT userid FROM `{!_MYSQL_PREFIX!}_user_data` WHERE birth_month=%s AND `status`='CONFIRMED'",
93                  array(bigintval($month)), __FILE__, __LINE__));
94         }
95
96         // Members in categories
97         $result = SQL_QUERY("SELECT id, cat FROM `{!_MYSQL_PREFIX!}_cats` WHERE `visible`='Y' ORDER BY `id`", __FILE__, __LINE__);
98
99         // Load categories first
100         $cats = array(); $cat_cnt = array();
101         while (list($id, $cat) = SQL_FETCHROW($result)) {
102                 // Simple...
103                 $cats[$id] = $cat;
104         }
105
106         // Now we have all categories loaded, count members
107         foreach ($cats as $id => $dummy) {
108                 // We only need id and nothing more to count...
109                 $cat_cnt[$id] = SQL_NUMROWS(SQL_QUERY_ESC("SELECT id FROM `{!_MYSQL_PREFIX!}_user_cats` WHERE cat_id=%s",
110                         array(bigintval($id)), __FILE__, __LINE__));
111         }
112
113         // Prepare data for the template
114         define('__TOTAL_USERS' , $total);
115         define('__UNCONFIRMED' , $unconfirmed);
116         define('__MALE_COUNT'  , $male);
117         define('__FEMALE_COUNT', $female);
118         define('__TMEM_COUNT'  , $tmem);
119         define('__YMEM_COUNT'  , $ymem);
120         define('__TREG_COUNT'  , $treg);
121         define('__YREG_COUNT'  , $yreg);
122         define('__LMODE_VALUE' , $lmode);
123         define('__LINK_TITLE'  , $ltitle);
124
125         // Generate monthly stats
126         $SW = 2; $r2 = " right2"; $l = "ll"; $r = "lr"; $OUT = "";
127         foreach ($months as $month => $cnt)
128         {
129                 if ($SW == 2) $OUT .= "<tr>\n";
130
131                 // Prepare data for template
132                 $content = array(
133                         'l_class'  => $l,
134                         'm_descr'  => $GLOBALS['month_descr'][$month],
135                         'r_class'  => $r,
136                         'r2_class' => $r2,
137                         'cnt'      => $cnt
138                 );
139
140                 // Load row template
141                 $OUT .= LOAD_TEMPLATE("guest_stats_month_row", true, $content);
142
143                 if ($SW == 2)
144                 {
145                         $r2 = "";
146                         $l = "rl"; $r = "rr";
147                 }
148                  else
149                 {
150                         $OUT .= "</tr>\n";
151                         $r2 = " right2";
152                         $l = "ll"; $r = "lr";
153                 }
154                 $SW = 3 - $SW;
155         }
156         define('__MONTH_STATS_ROWS', $OUT);
157
158         // Generate category stats
159         $SW = 2; $OUT = "";
160         foreach ($cat_cnt as $id => $cnt)
161         {
162                 // Prepare data for the template
163                 $content = array(
164                         'sw'  => $SW,
165                         'cat' => $cats[$id],
166                         'cnt' => $cnt,
167                 );
168
169                 // Load row template and switch colors
170                 $OUT .= LOAD_TEMPLATE("guest_stats_cats_row", true, $content);
171                 $SW = 3 - $SW;
172         }
173         define('__CATS_STATS_ROWS', $OUT);
174
175         // Load final template
176         LOAD_TEMPLATE("guest_stats_member");
177         break;
178
179 case "MODULES": // TOP10 module clicks
180         $AND = "";
181         if (!IS_ADMIN()) $AND = " AND `locked`='N' AND `visible`='Y'";
182         $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__);
183         $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__);
184         if ((SQL_NUMROWS($guest_t10) > 0) || (SQL_NUMROWS($mem_t10) > 0)) {
185                 // Output header
186                 OUTPUT_HTML("<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\" class=\"guest_table dashed\" width=\"310\">
187 <tr>
188   <td align=\"center\" class=\"guest_stats_title bottom2\" colspan=\"2\"><strong>{--GUEST_TOPTEN_STATS--}</strong></td>
189 </tr>");
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_GUEST_STATS--}</td>
196 </tr>");
197                 $SW = 2;
198                 while (list($clicks, $title) = SQL_FETCHROW($guest_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) {
208                 // Guest clicks
209                 OUTPUT_HTML("<tr>
210   <td align=\"center\" class=\"guest_title2 bottom2\" colspan=\"2\">{--GUEST_TOP_MEMBER_STATS--}</td>
211 </tr>");
212                 $SW = 2;
213                 while (list($clicks, $title) = SQL_FETCHROW($mem_t10)) {
214                         OUTPUT_HTML("<tr>
215   <td class=\"switch_sw".$SW." bottom2 right2\" align=\"right\" width=\"250\">".$title."&nbsp;</td>
216   <td class=\"switch_sw".$SW." bottom2\" width=\"50\">&nbsp;".$clicks."</td>
217 </tr>");
218                         $SW = 3 - $SW;
219                 }
220         }
221
222         if ((SQL_NUMROWS($guest_t10) > 0) || (SQL_NUMROWS($mem_t10) > 0)) {
223                 // Output footer
224                 OUTPUT_HTML("<tr>
225   <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>
226 </tr>
227 </table>");
228         }
229         break;
230
231 case "INACTIVE": // Deactivated stats
232         LOAD_TEMPLATE("admin_settings_saved", false, "<strong>{--GUEST_STATS_DEACTIVATED--}</strong>");
233         break;
234 }
235
236 //
237 ?>