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 to add entries to the event log. Technically this class belongs to the
* eventlog module, but since it is used in so many places, this helper resides
* in the general inc directory instead of the eventlog's inc directory, since
* that would require to add "if (Module::isAvailable('eventlog')) { ... }"
* all over the place. Instead, the availability check was moved here.
*/
class EventLog
{
private static function log($type, $message, $details)
{
if (!Module::isAvailable('eventlog')) {
// Eventlog module does not exist; the eventlog table might not exist, so bail out
error_log($message);
return;
}
Database::exec("INSERT INTO eventlog (dateline, logtypeid, description, extra)"
. " VALUES (UNIX_TIMESTAMP(), :type, :message, :details)", array(
'type' => $type,
'message' => $message,
'details' => $details
), true);
}
public static function failure($message, $details = '')
{
self::log('failure', $message, $details);
Property::setLastWarningId(Database::lastInsertId());
}
public static function warning($message, $details = '')
{
self::log('warning', $message, $details);
Property::setLastWarningId(Database::lastInsertId());
}
public static function info($message, $details = '')
{
self::log('info', $message, $details);
}
/**
* DELETE ENTIRE EVENT LOG!
*/
public static function clear()
{
if (!Module::isAvailable('eventlog'))
return;
Database::exec("TRUNCATE eventlog");
}
}
|