mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:05:16 +01:00
86 lines
2.9 KiB
PHP
Executable File
86 lines
2.9 KiB
PHP
Executable File
<?php
|
|
/***************************************************************************\
|
|
* eGroupWare - log *
|
|
* http://www.egroupware.org *
|
|
* Written by : Jerry Westrick [jerry@westrick.com] *
|
|
* ------------------------------------------------- *
|
|
* 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 bolog
|
|
{
|
|
var $public_functions = array
|
|
(
|
|
'read_log' => True
|
|
);
|
|
|
|
function bolog($session=False)
|
|
{
|
|
$this->so =& CreateObject('admin.solog');
|
|
}
|
|
|
|
function get_error_cols()
|
|
{
|
|
$fields = $this->so->get_error_cols();
|
|
// boAccounts
|
|
$fields['account_pwd']['include'] = false;
|
|
return $fields;
|
|
}
|
|
|
|
function get_error_cols_e()
|
|
{
|
|
$fields = $this->so->get_error_cols_e();
|
|
$fields['log_date_e'] = array();
|
|
$fields['log_msg_date_e'] = array();
|
|
$fields['log_full_name'] = array();
|
|
// boAccounts
|
|
$fields['account_pwd']['include'] = false;
|
|
$fields['account_lastlogin_e'] = array();
|
|
$fields['account_lastloginfrom_e'] = array();
|
|
$fields['account_lastpwd_change_e'] = array();
|
|
return $fields;
|
|
}
|
|
|
|
function get_error($values='')
|
|
{
|
|
$rows = $this->so->get_error($values);
|
|
// should remove the accounts_pwd
|
|
return $rows;
|
|
}
|
|
|
|
function get_no_errors()
|
|
{
|
|
$rows = $this->so->get_no_errors();
|
|
return $rows;
|
|
}
|
|
|
|
function get_error_e($values='')
|
|
{
|
|
$rows = $this->so->get_error_e($values);
|
|
|
|
// Enhance the fields
|
|
reset($rows);
|
|
while(list($rno,$r)=each($rows))
|
|
{
|
|
unset($r['acount_pwd']); // remove the accounts_pwd
|
|
$r['log_date_e']['value'] = $GLOBALS['egw']->common->show_date($GLOBALS['egw']->db->from_timestamp($r['log_date']['value']));
|
|
$r['log_msg_date_e']['value'] = $GLOBALS['egw']->common->show_date($GLOBALS['egw']->db->from_timestamp($r['log_msg_date']['value']));
|
|
$r['log_full_name']['value'] = $r['account_lastname']['value'] . ', ' .$r['account_firstname']['value'];
|
|
$r['account_lastlogin_e']['value'] = $GLOBALS['egw']->common->show_date($GLOBALS['egw']->db->from_timestamp($r['account_lastlogin']['value']));
|
|
$r['account_lastpwd_change_e']['value'] = $GLOBALS['egw']->common->show_date($GLOBALS['egw']->db->from_timestamp($r['account_lastpwd_change']['value']));
|
|
$r['account_lastloginfrom_e']['value'] = 'www.nowhere.com';
|
|
|
|
$r['log_msg_text']['value'] = lang($r['log_msg_msg']['value'],explode('|',$r['log_msg_parms']['value']));
|
|
|
|
$rows[$rno]=$r;
|
|
}
|
|
return $rows;
|
|
}
|
|
}
|
|
?>
|