blob: b365491049f18dd6aceb0262b38f6cfd40f778b8 (
plain)
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
|
<?php
/* Icinga DB Web | (c) 2020 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Model\Behavior;
use ipl\Orm\Contract\PropertyBehavior;
class Timestamp extends PropertyBehavior
{
public function fromDb($value, $key, $_)
{
if ($value === null) {
return $value;
}
return $value / 1000.0;
}
public function toDb($value, $key, $_)
{
if ($value === null) {
return $value;
}
if (is_string($value) && ! ctype_digit($value)) {
$timestamp = strtotime($value);
if ($timestamp === false) {
return $value;
} else {
$value = $timestamp;
}
}
return $value * 1000.0;
}
}
|