UserOnline/copy_this/core/d3usersonline.php

71 lines
2.3 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/>.
*
* @author Aggrosoft, D<EFBFBD> Data Development
*/
2011-10-19 22:53:23 +02:00
class d3usersonline extends oxI18n
2011-10-19 22:05:36 +02:00
{
/**
* Object core table name
*
* @var string
*/
2011-10-19 22:53:23 +02:00
protected $_sCoreTbl = 'd3usersonline';
2011-10-19 22:05:36 +02:00
/**
* Current class name
*
* @var string
*/
2011-10-19 22:53:23 +02:00
protected $_sClassName = 'd3usersonline';
2011-10-19 22:05:36 +02:00
public function __construct($aParams = null)
{
parent::__construct();
2011-10-19 22:53:23 +02:00
$this->init( 'd3usersonline' );
2011-10-19 22:05:36 +02:00
}
public function clearOldItems($iExpTime)
{
$exptime = time() - $iExpTime;
2011-10-19 22:53:23 +02:00
oxDb::getDb()->Execute("delete from ".$this->getViewName()." where timevisit < $exptime");
2011-10-19 22:05:36 +02:00
}
public function getActUserItem($sUserIPHash)
{
2011-10-19 22:53:23 +02:00
$sSelect = "select count(*) from ".$this->getViewName()." where visitor= ".oxDb::getDb()->quote($sUserIPHash);
2011-10-19 22:05:36 +02:00
return oxDb::getDb()->getOne( $sSelect );
}
public function getUserCount()
{
2011-10-19 22:53:23 +02:00
$sSelect = "select count(*) from ".$this->getViewName()." order by timevisit desc";
2011-10-19 22:05:36 +02:00
$iCount = oxDb::getDb()->getOne($sSelect);
return $iCount;
}
public function setActTimeVisit($sUserIpHash)
{
2011-10-19 22:53:23 +02:00
oxDb::getDb()->Execute("update ".$this->getViewName()." set timevisit= ".oxDb::getDb()->quote(time()).", oxclass = ".oxDb::getDb()->quote($this->getConfig()->getActiveView()->getClassName())." where visitor= ".oxDb::getDb()->quote($sUserIpHash));
2011-10-19 22:05:36 +02:00
}
public function insertActUser($sUserIpHash)
{
2011-10-19 22:53:23 +02:00
oxDb::getDb()->Execute("insert into ".$this->getViewName()." (visitor,timevisit,oxclass) values (".oxDb::getDb()->quote($sUserIpHash).", ".oxDb::getDb()->quote(time()).", ".oxDb::getDb()->quote($this->getConfig()->getActiveView()->getClassName()).")");
2011-10-19 22:05:36 +02:00
}
}