blob: 1c81983c9a135a264f7dfed5cf98cd03f24ce08e (
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
56
57
58
59
|
<?php
class Page_EventLog extends Page
{
protected function doPreprocess()
{
User::load();
User::assertPermission('view');
User::setLastSeenEvent(Property::getLastWarningId());
}
protected function doRender()
{
Render::addTemplate("heading");
$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)) {
$row['date'] = Util::prettyTime($row['dateline']);
$row['icon'] = $this->typeToIcon($row['logtypeid']);
$row['color'] = $this->typeToColor($row['logtypeid']);
$lines[] = $row;
}
$paginate->render('_page', array(
'list' => $lines
));
}
private function typeToIcon($type)
{
switch ($type) {
case 'info':
return 'ok';
case 'warning':
return 'exclamation-sign';
case 'failure':
return 'remove';
default:
return 'question-sign';
}
}
private function typeToColor($type)
{
switch ($type) {
case 'info':
return '';
case 'warning':
return 'orange';
case 'failure':
return 'red';
default:
return '';
}
}
}
|