Typo 'referral'->'referal' fixed, more 'empty version' fixed
[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 - 2009 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         die();
42 } // END - if
43
44 // Add description as navigation point
45 addMenuDescription('guest', __FILE__);
46
47 if ((!isExtensionActive('active')) && (!isAdmin())) {
48         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('active'));
49         return;
50 } // END - if
51
52 // Extra field to include is by default userid
53 $add = 'userid';
54
55 // If nickname is installed the extra field is the nickname of the user
56 if (isExtensionActive('nickname')) $add = 'nickname';
57
58 // Check for members who were active only this day
59 $result = SQL_QUERY("SELECT
60         `userid`, `".$add."`, `last_online`
61 FROM
62         `{?_MYSQL_PREFIX?}_user_data`
63 WHERE
64         `last_online` >= {?START_TDAY?} AND `status`='CONFIRMED'
65 ORDER BY
66         `last_online` DESC
67 LIMIT {?active_limit?}", __FILE__, __LINE__);
68
69 // Entries found?
70 if (SQL_NUMROWS($result) > 0) {
71         // At least one member was online so let's load them all
72         $OUT = ''; $SW = 2;
73         while (list($userid, $nick, $last) = SQL_FETCHROW($result)) {
74                 $nick2 = '---';
75                 if (($nick != $userid) && (!empty($nick))) $nick2 = $nick;
76
77                 // Transfer data to array
78                 $content = array(
79                         'sw'          => $SW,
80                         'userid'      => $userid,
81                         'nickname'    => $nick2,
82                         'points'      => translateComma(countSumTotalData($userid, 'user_points', 'points') - countSumTotalData($userid, 'user_data', 'used_points')),
83                         'last_online' => generateDateTime($last, 2),
84                 );
85
86                 // Load template
87                 $OUT .= loadTemplate('guest_active_row', true, $content);
88
89                 // Switch colors
90                 $SW = 3 - $SW;
91         }
92 } else {
93         // No member was online today! :-(
94         $OUT = loadTemplate('guest_active_none_row', true);
95 }
96
97 // Load template
98 loadTemplate('guest_active_table', false, $OUT);
99
100 // [EOF]
101 ?>