mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:44 +01:00
73 lines
2.0 KiB
PHP
73 lines
2.0 KiB
PHP
<?php
|
|
/**************************************************************************\
|
|
* eGroupWare - Administration *
|
|
* http://www.egroupware.org *
|
|
* -------------------------------------------- *
|
|
* 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 2 of the License, or (at your *
|
|
* option) any later version. *
|
|
\**************************************************************************/
|
|
|
|
/* $Id$ */
|
|
|
|
class soaccess_history
|
|
{
|
|
var $db;
|
|
|
|
function soaccess_history()
|
|
{
|
|
$this->db = clone($GLOBALS['egw']->db);
|
|
}
|
|
|
|
function test_account_id($account_id)
|
|
{
|
|
if ($account_id)
|
|
{
|
|
return " where account_id='$account_id'";
|
|
}
|
|
}
|
|
|
|
function list_history($account_id,$start,$order,$sort)
|
|
{
|
|
$where = $this->test_account_id($account_id);
|
|
|
|
$this->db->limit_query("select loginid,ip,li,lo,account_id,sessionid from phpgw_access_log $where order by li desc",$start,__LINE__,__FILE__);
|
|
while ($this->db->next_record())
|
|
{
|
|
$records[] = array(
|
|
'loginid' => $this->db->f('loginid'),
|
|
'ip' => $this->db->f('ip'),
|
|
'li' => $this->db->f('li'),
|
|
'lo' => $this->db->f('lo'),
|
|
'account_id' => $this->db->f('account_id'),
|
|
'sessionid' => $this->db->f('sessionid')
|
|
);
|
|
}
|
|
return $records;
|
|
}
|
|
|
|
function total($account_id)
|
|
{
|
|
$where = $this->test_account_id($account_id);
|
|
|
|
$this->db->query("select count(*) from phpgw_access_log $where");
|
|
$this->db->next_record();
|
|
|
|
return $this->db->f(0);
|
|
}
|
|
|
|
function return_logged_out($account_id)
|
|
{
|
|
if ($account_id)
|
|
{
|
|
$where = "and account_id='$account_id'";
|
|
}
|
|
|
|
$this->db->query("select count(*) from phpgw_access_log where lo!=0 $where");
|
|
$this->db->next_record();
|
|
|
|
return $this->db->f(0);
|
|
}
|
|
}
|