. * * @author Aggrosoft, Dł Data Development */ class d3usersonline extends oxI18n { /** * Object core table name * * @var string */ protected $_sCoreTbl = 'd3usersonline'; /** * Current class name * * @var string */ protected $_sClassName = 'd3usersonline'; public function __construct($aParams = null) { parent::__construct(); $this->init( 'd3usersonline' ); } public function clearOldItems($iExpTime) { $exptime = time() - $iExpTime; oxDb::getDb()->Execute("delete from ".$this->getViewName()." where timevisit < $exptime"); } public function getActUserItem($sUserIPHash) { $sSelect = "select count(*) from ".$this->getViewName()." where visitor= ".oxDb::getDb()->quote($sUserIPHash); return oxDb::getDb()->getOne( $sSelect ); } public function getUserCount() { $sSelect = "select count(*) from ".$this->getViewName()." order by timevisit desc"; $iCount = oxDb::getDb()->getOne($sSelect); return $iCount; } public function setActTimeVisit($sUserIpHash) { 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)); } public function insertActUser($sUserIpHash) { 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()).")"); } }