<?php/** * @package Joomla.Site * @subpackage mod_whosonline * * @copyright Copyright (C) 2005 - 2019 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE.txt */defined('_JEXEC')ordie;?><?phpif($showmode==0||$showmode==2):?><?php$guest=JText::plural('MOD_WHOSONLINE_GUESTS',$count['guest']);?><?php$member=JText::plural('MOD_WHOSONLINE_MEMBERS',$count['user']);?><p><?phpechoJText::sprintf('MOD_WHOSONLINE_WE_HAVE',$guest,$member);?></p><?phpendif;?><?phpif(($showmode>0)&&count($names)):?><?phpif($params->get('filter_groups',0)):?><p><?phpechoJText::_('MOD_WHOSONLINE_SAME_GROUP_MESSAGE');?></p><?phpendif;?><ulclass="whosonline<?phpecho$moduleclass_sfx;?>"><?phpforeach($namesas$name):?><li><?phpecho$name->username;?></li><?phpendforeach;?></ul><?phpendif;