Even more variables renamed and login procedure prepared for filter
[mailer.git] / inc / modules / guest / what-active.php
1 <?php
2 /************************************************************************
3  * MXChange v0.2.1                                    Start: 11/26/2004 *
4  * ================                             Last change: 11/26/2004 *
5  *                                                                      *
6  * -------------------------------------------------------------------- *
7  * File              : what-active.php                                  *
8  * -------------------------------------------------------------------- *
9  * Short description : Today active members list                        *
10  * -------------------------------------------------------------------- *
11  * Kurzbeschreibung  : Liste heutiger aktiver Mitglieder                *
12  * -------------------------------------------------------------------- *
13  * $Revision::                                                        $ *
14  * $Date::                                                            $ *
15  * $Tag:: 0.2.1-FINAL                                                 $ *
16  * $Author::                                                          $ *
17  * Needs to be in all Files and every File needs "svn propset           *
18  * svn:keywords Date Revision" (autoprobset!) at least!!!!!!            *
19  * -------------------------------------------------------------------- *
20  * Copyright (c) 2003 - 2008 by Roland Haeder                           *
21  * For more information visit: http://www.mxchange.org                  *
22  *                                                                      *
23  * This program is free software; you can redistribute it and/or modify *
24  * it under the terms of the GNU General Public License as published by *
25  * the Free Software Foundation; either version 2 of the License, or    *
26  * (at your option) any later version.                                  *
27  *                                                                      *
28  * This program is distributed in the hope that it will be useful,      *
29  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
30  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
31  * GNU General Public License for more details.                         *
32  *                                                                      *
33  * You should have received a copy of the GNU General Public License    *
34  * along with this program; if not, write to the Free Software          *
35  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
36  * MA  02110-1301  USA                                                  *
37  ************************************************************************/
38
39 // Some security stuff...
40 if (!defined('__SECURITY')) {
41         $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
42         require($INC);
43 } elseif ((!EXT_IS_ACTIVE("active")) && (!IS_ADMIN())) {
44         addFatalMessage(__FILE__, __LINE__, getMessage('EXTENSION_PROBLEM_EXT_INACTIVE'), "active");
45         return;
46 }
47
48 // Add description as navigation point
49 ADD_DESCR("guest", __FILE__);
50
51 // Extra field to include is by default uid
52 $add = "userid";
53
54 // If nickname is installed the extra field is the nickname of the user
55 if (EXT_IS_ACTIVE("nickname")) $add = "nickname";
56
57 // Check for members who were active only this day
58 $result = SQL_QUERY_ESC("SELECT userid, ".$add.", last_online
59 FROM `{!_MYSQL_PREFIX!}_user_data`
60 WHERE last_online >= %s AND `status`='CONFIRMED'
61 ORDER BY last_online DESC LIMIT %s",
62         array(START_TDAY, getConfig('active_limit')), __FILE__, __LINE__);
63
64 // Entries found?
65 if (SQL_NUMROWS($result) > 0) {
66         // At least one member was online so let's load them all
67         $OUT = ""; $SW = 2;
68         while (list($uid, $nick, $last) = SQL_FETCHROW($result)) {
69                 $nick2 = "---";
70                 if (($nick != $uid) && (!empty($nick))) $nick2 = $nick;
71
72                 // Transfer data to array
73                 $content = array(
74                         'sw'     => $SW,
75                         'uid'    => $uid,
76                         'nick'   => $nick2,
77                         'points' => TRANSLATE_COMMA(GET_TOTAL_DATA($uid, "user_points", "points") - GET_TOTAL_DATA($uid, "user_data", "used_points")),
78                         'last'   => MAKE_DATETIME($last, "2"),
79                 );
80
81                 // Load template
82                 $OUT .= LOAD_TEMPLATE("guest_active_row", true, $content);
83
84                 // Switch colors
85                 $SW = 3 - $SW;
86         }
87 } else {
88         // No member was online today! :-(
89         $OUT = LOAD_TEMPLATE("guest_active_none_row", true);
90 }
91
92 // Remember output in constant
93 define('__ACTIVE_ROWS', $OUT);
94
95 // Load template
96 LOAD_TEMPLATE("guest_active_table");
97
98 //
99 ?>