bdd6e19e6226fcb23b723cf1b63756febdcb5f9c
[mailer.git] / inc / modules / guest / what-active.php
1 <?php
2 /************************************************************************
3  * Mailer v0.2.1-FINAL                                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  * -------------------------------------------------------------------- *
18  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
19  * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
20  * For more information visit: http://www.mxchange.org                  *
21  *                                                                      *
22  * This program is free software; you can redistribute it and/or modify *
23  * it under the terms of the GNU General Public License as published by *
24  * the Free Software Foundation; either version 2 of the License, or    *
25  * (at your option) any later version.                                  *
26  *                                                                      *
27  * This program is distributed in the hope that it will be useful,      *
28  * but WITHOUT ANY WARRANTY; without even the implied warranty of       *
29  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the        *
30  * GNU General Public License for more details.                         *
31  *                                                                      *
32  * You should have received a copy of the GNU General Public License    *
33  * along with this program; if not, write to the Free Software          *
34  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,               *
35  * MA  02110-1301  USA                                                  *
36  ************************************************************************/
37
38 // Some security stuff...
39 if (!defined('__SECURITY')) {
40         die();
41 } // END - if
42
43 // Add description as navigation point
44 addYouAreHereLink('guest', __FILE__);
45
46 if ((!isExtensionActive('active')) && (!isAdmin())) {
47         loadTemplate('admin_settings_saved', false, generateExtensionInactiveNotInstalledMessage('active'));
48         return;
49 } // END - if
50
51 // Extra field to include is by default userid
52 $add = 'userid';
53
54 // If nickname is installed the extra field is the nickname of the user
55 if (isExtensionActive('nickname')) $add = 'nickname';
56
57 // Check for members who were active only this day
58 $result = SQL_QUERY("SELECT
59         `userid`, `".$add."`, `last_online`
60 FROM
61         `{?_MYSQL_PREFIX?}_user_data`
62 WHERE
63         `last_online` >= {?START_TDAY?} AND
64         `status`='CONFIRMED'
65 ORDER BY
66         `last_online` DESC
67 LIMIT {?active_limit?}", __FILE__, __LINE__);
68
69 // Entries found?
70 if (!SQL_HASZERONUMS($result)) {
71         // At least one member was online so let's load them all
72         $OUT = '';
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                         'userid'      => $userid,
80                         'nickname'    => $nick2,
81                         'points'      => getTotalPoints($userid),
82                         'last_online' => generateDateTime($last, 2),
83                 );
84
85                 // Load template
86                 $OUT .= loadTemplate('guest_active_row', true, $content);
87         } // END - while
88 } else {
89         // No member was online today! :-(
90         $OUT = loadTemplate('guest_active_none_row', true);
91 }
92
93 // Load template
94 loadTemplate('guest_active_table', false, $OUT);
95
96 // [EOF]
97 ?>