blob: 1a63a0a6be264247069ce11da4414a3752e61b2f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
<?php
class Page_EventLog extends Page
{
protected function doPreprocess()
{
User::load();
if (!User::hasPermission('superadmin')) {
Message::addError('no-permission');
Util::redirect('?do=Main');
}
User::setLastSeenEvent(Property::getLastWarningId());
}
protected function doRender()
{
Render::setTitle(Dictionary::translate('lang_titleEventLog'));
$today = date('d.m.Y');
$yesterday = date('d.m.Y', time() - 86400);
$lines = array();
$paginate = new Paginate("SELECT logid, dateline, logtypeid, description, extra FROM eventlog ORDER BY logid DESC", 50);
$res = $paginate->exec();
while ($row = $res->fetch(PDO::FETCH_ASSOC)) {
$day = date('d.m.Y', $row['dateline']);
if ($day === $today) {
$day = Dictionary::translate('today');
} elseif ($day === $yesterday) {
$day = Dictionary::translate('yesterday');
}
$row['date'] = $day . date(' H:i', $row['dateline']);
$row['icon'] = $this->typeToIcon($row['logtypeid']);
$lines[] = $row;
}
$paginate->render('eventlog/_page', array(
'list' => $lines
));
}
private function typeToIcon($type)
{
switch ($type) {
case 'info':
return 'ok';
case 'warning':
return 'exclamation-sign';
case 'error':
return 'remove';
default:
return 'question-sign';
}
}
}
|