UserOnline/copy_this/modules/d3/d3usersonline/modules/components/d3_oxcmp_utils_usersonline.php

49 lines
1.6 KiB
PHP
Raw Normal View History

2011-10-19 22:05:36 +02:00
<?php
/**
* 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 3 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, see <http://www.gnu.org/licenses/>.
*
2013-09-03 12:33:05 +02:00
* @author D3 Data Development - Daniel Seifert <support@shopmodule.com>
* @link http://www.oxidmodule.com
2011-10-19 22:05:36 +02:00
*/
2011-10-19 22:53:23 +02:00
class d3_oxcmp_utils_usersonline extends d3_oxcmp_utils_usersonline_parent
2011-10-19 22:05:36 +02:00
{
2013-09-03 12:33:05 +02:00
protected $_blIsComponent = true;
protected $_sD3UsersOnlineModId = 'd3usersonline';
2011-10-19 22:05:36 +02:00
2013-09-03 12:33:05 +02:00
/**
* @return string
*/
2011-10-19 22:05:36 +02:00
public function render()
{
2013-09-03 12:33:05 +02:00
$sRet = parent::render();
2011-10-19 22:05:36 +02:00
2015-01-23 10:22:46 +01:00
if (d3_cfg_mod::get($this->_sD3UsersOnlineModId)->isActive()) {
2013-09-09 09:49:11 +02:00
/** @var d3usersonline $oUsersOnline */
$oUsersOnline = oxNew('d3usersonline');
2017-11-21 11:41:06 +01:00
$oUsersOnline->clearOldItems();
2013-09-09 09:49:11 +02:00
$oUsersOnline->setActTimeVisit();
2011-10-19 22:05:36 +02:00
2013-09-03 12:33:05 +02:00
$oUser = $this->getUser();
2015-01-23 10:22:46 +01:00
if ($oUser && strtolower($oUser->getFieldData('oxrights')) == 'malladmin') {
2013-09-03 12:33:05 +02:00
/** @var oxview $oActView */
$oActView = $this->getParent();
2013-09-09 09:49:11 +02:00
$oActView->addTplParam('aUsersOnline', $oUsersOnline->getUserCount());
2011-10-19 22:05:36 +02:00
}
}
2013-09-03 12:33:05 +02:00
return $sRet;
2011-10-19 22:05:36 +02:00
}
2015-01-23 10:22:46 +01:00
}