1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
|
<?php
/**
* Logged In Users Block
*
* This block will print a list of the users who are currently logged in
*
* webtrees: Web based Family History software
* Copyright (C) 2010 webtrees development team.
*
* Derived from PhpGedView
* Copyright (C) 2002 to 2009 PGV Development Team. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* @package webtrees
* @subpackage Blocks
* @version $Id$
*/
if (!defined('WT_WEBTREES')) {
header('HTTP/1.0 403 Forbidden');
exit;
}
define('WT_LOGGED_IN_PHP', '');
$WT_BLOCKS['print_logged_in_users']=array(
'name'=>i18n::translate('Logged In Users'),
'type'=>'both',
'descr'=>i18n::translate('The Logged In Users block shows a list of the users who are currently logged in.'),
'canconfig'=>false,
'config'=>array(
'cache'=>0
)
);
/**
* logged in users
*
* prints a list of other users who are logged in
*/
/**
* logged in users
*
* prints a list of other users who are logged in
*/
function print_logged_in_users($block = true, $config = "", $side, $index) {
global $WT_SESSION_TIME, $TEXT_DIRECTION;
$block = true; // Always restrict this block's height
// Log out inactive users
foreach (get_idle_users(time()-$WT_SESSION_TIME) as $user_id=>$user_name) {
if ($user_id!=WT_USER_ID) {
userLogout($user_id);
}
}
// List active users
$NumAnonymous = 0;
$loggedusers = array ();
foreach (get_logged_in_users() as $user_id=>$user_name) {
if (WT_USER_IS_ADMIN || get_user_setting($user_id, 'visibleonline')=='Y') {
$loggedusers[$user_id]=$user_name;
} else {
$NumAnonymous++;
}
}
$id = "logged_in_users";
$title=i18n::translate('Users Logged In');
$title.=help_link('index_loggedin');
$content='<table width="90%">';
$LoginUsers=count($loggedusers);
if ($LoginUsers==0 && $NumAnonymous==0) {
$content.='<tr><td><b>' . i18n::translate('No logged-in and no anonymous users') . '</b></td></tr>';
}
if ($NumAnonymous>0) {
$content.='<tr><td><b>' . i18n::plural('%d anonymous logged-in user', '%d anonymous logged-in users', $NumAnonymous, $NumAnonymous) . '</b></td></tr>';
}
if ($LoginUsers>0) {
$content.='<tr><td><b>' . i18n::plural('%d logged-in user', '%d logged-in users', $LoginUsers, $LoginUsers) . '</b></td></tr>';
}
if (WT_USER_ID) {
foreach ($loggedusers as $user_id=>$user_name) {
$content .= "<tr><td><br />".PrintReady(getUserFullName($user_id))." - ".$user_name;
if (WT_USER_ID!=$user_id && get_user_setting($user_id, 'contactmethod')!="none") {
$content .= "<br /><a href=\"javascript:;\" onclick=\"return message('" . $user_id . "');\">" . i18n::translate('Send Message') . "</a>";
}
$content .= "</td></tr>";
}
}
$content .= "</table>";
global $THEME_DIR;
if ($block) {
require $THEME_DIR.'templates/block_small_temp.php';
} else {
require $THEME_DIR.'templates/block_main_temp.php';
}
}
?>
|