xref: /webtrees/app/Module/LoggedInUsersModule.php (revision e3fb86df7b59efbf6fe979d9e13092cc1bfebf9b)
18c2e8227SGreg Roach<?php
28c2e8227SGreg Roachnamespace Fisharebest\Webtrees;
38c2e8227SGreg Roach
48c2e8227SGreg Roach/**
58c2e8227SGreg Roach * webtrees: online genealogy
68c2e8227SGreg Roach * Copyright (C) 2015 webtrees development team
78c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify
88c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by
98c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or
108c2e8227SGreg Roach * (at your option) any later version.
118c2e8227SGreg Roach * This program is distributed in the hope that it will be useful,
128c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
138c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
148c2e8227SGreg Roach * GNU General Public License for more details.
158c2e8227SGreg Roach * You should have received a copy of the GNU General Public License
168c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>.
178c2e8227SGreg Roach */
188c2e8227SGreg Roach
198c2e8227SGreg Roach/**
208c2e8227SGreg Roach * Class LoggedInUsersModule
218c2e8227SGreg Roach */
22e2a378d3SGreg Roachclass LoggedInUsersModule extends AbstractModule implements ModuleBlockInterface {
238c2e8227SGreg Roach	/** {@inheritdoc} */
248c2e8227SGreg Roach	public function getTitle() {
258c2e8227SGreg Roach		return /* I18N: Name of a module. (A list of users who are online now) */ I18N::translate('Who is online');
268c2e8227SGreg Roach	}
278c2e8227SGreg Roach
288c2e8227SGreg Roach	/** {@inheritdoc} */
298c2e8227SGreg Roach	public function getDescription() {
308c2e8227SGreg Roach		return /* I18N: Description of the “Who is online” module */ I18N::translate('A list of users and visitors who are currently online.');
318c2e8227SGreg Roach	}
328c2e8227SGreg Roach
338c2e8227SGreg Roach	/** {@inheritdoc} */
348c2e8227SGreg Roach	public function getBlock($block_id, $template = true, $cfg = null) {
35*e3fb86dfSGreg Roach		global $WT_TREE;
36*e3fb86dfSGreg Roach
378c2e8227SGreg Roach		$id        = $this->getName() . $block_id;
388c2e8227SGreg Roach		$class     = $this->getName() . '_block';
398c2e8227SGreg Roach		$title     = $this->getTitle();
408c2e8227SGreg Roach		$anonymous = 0;
418c2e8227SGreg Roach		$logged_in = array();
428c2e8227SGreg Roach		$content   = '';
438c2e8227SGreg Roach		foreach (User::allLoggedIn() as $user) {
448c2e8227SGreg Roach			if (Auth::isAdmin() || $user->getPreference('visibleonline')) {
458c2e8227SGreg Roach				$logged_in[] = $user;
468c2e8227SGreg Roach			} else {
478c2e8227SGreg Roach				$anonymous++;
488c2e8227SGreg Roach			}
498c2e8227SGreg Roach		}
508c2e8227SGreg Roach		$count_logged_in = count($logged_in);
518c2e8227SGreg Roach		$content .= '<div class="logged_in_count">';
528c2e8227SGreg Roach		if ($anonymous) {
53def7396fSGreg Roach			$content .= I18N::plural('%s anonymous logged-in user', '%s anonymous logged-in users', $anonymous, I18N::number($anonymous));
548c2e8227SGreg Roach			if ($count_logged_in) {
558c2e8227SGreg Roach				$content .= '&nbsp;|&nbsp;';
568c2e8227SGreg Roach			}
578c2e8227SGreg Roach		}
588c2e8227SGreg Roach		if ($count_logged_in) {
59def7396fSGreg Roach			$content .= I18N::plural('%s logged-in user', '%s logged-in users', $count_logged_in, I18N::number($count_logged_in));
608c2e8227SGreg Roach		}
618c2e8227SGreg Roach		$content .= '</div>';
628c2e8227SGreg Roach		$content .= '<div class="logged_in_list">';
638c2e8227SGreg Roach		if (Auth::check()) {
648c2e8227SGreg Roach			foreach ($logged_in as $user) {
65*e3fb86dfSGreg Roach				$individual = Individual::getInstance($WT_TREE->getUserPreference($user, 'gedcomid'), $WT_TREE);
66*e3fb86dfSGreg Roach
678c2e8227SGreg Roach				$content .= '<div class="logged_in_name">';
68*e3fb86dfSGreg Roach				if ($individual) {
69*e3fb86dfSGreg Roach					$content .= '<a href="' . $individual->getHtmlUrl() . '">' . $user->getRealNameHtml() . '</a>';
70*e3fb86dfSGreg Roach				} else {
71*e3fb86dfSGreg Roach					$content .= $user->getRealNameHtml();
72*e3fb86dfSGreg Roach				}
73*e3fb86dfSGreg Roach				$content .= ' - ' . Filter::escapeHtml($user->getUserName());
748c2e8227SGreg Roach				if (Auth::id() != $user->getUserId() && $user->getPreference('contactmethod') != 'none') {
758c2e8227SGreg Roach					$content .= ' <a class="icon-email" href="#" onclick="return message(\'' . Filter::escapeHtml($user->getUserName()) . '\', \'\', \'' . Filter::escapeHtml(get_query_url()) . '\');" title="' . I18N::translate('Send a message') . '"></a>';
768c2e8227SGreg Roach				}
778c2e8227SGreg Roach				$content .= '</div>';
788c2e8227SGreg Roach			}
798c2e8227SGreg Roach		}
808c2e8227SGreg Roach		$content .= '</div>';
818c2e8227SGreg Roach
828c2e8227SGreg Roach		if ($anonymous === 0 && $count_logged_in === 0) {
838c2e8227SGreg Roach			return '';
848c2e8227SGreg Roach		}
858c2e8227SGreg Roach
868c2e8227SGreg Roach		if ($template) {
878c2e8227SGreg Roach			return Theme::theme()->formatBlock($id, $title, $class, $content);
888c2e8227SGreg Roach		} else {
898c2e8227SGreg Roach			return $content;
908c2e8227SGreg Roach		}
918c2e8227SGreg Roach	}
928c2e8227SGreg Roach
938c2e8227SGreg Roach	/** {@inheritdoc} */
948c2e8227SGreg Roach	public function loadAjax() {
958c2e8227SGreg Roach		return false;
968c2e8227SGreg Roach	}
978c2e8227SGreg Roach
988c2e8227SGreg Roach	/** {@inheritdoc} */
998c2e8227SGreg Roach	public function isUserBlock() {
1008c2e8227SGreg Roach		return true;
1018c2e8227SGreg Roach	}
1028c2e8227SGreg Roach
1038c2e8227SGreg Roach	/** {@inheritdoc} */
1048c2e8227SGreg Roach	public function isGedcomBlock() {
1058c2e8227SGreg Roach		return true;
1068c2e8227SGreg Roach	}
1078c2e8227SGreg Roach
1088c2e8227SGreg Roach	/** {@inheritdoc} */
1098c2e8227SGreg Roach	public function configureBlock($block_id) {
1108c2e8227SGreg Roach	}
1118c2e8227SGreg Roach}
112