Date.php
1.32 KB
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
60
61
62
63
64
65
66
67
<?php
namespace ACP\Editing\Service;
use ACP\Editing\Service;
use ACP\Editing\Storage;
use ACP\Editing\View;
use DateTime;
class Date implements Service
{
const FORMAT = 'Y-m-d';
/**
* @var View\Date
*/
private $view;
/**
* @var Storage
*/
private $storage;
/**
* @var string
*/
protected $date_format;
public function __construct(View\Date $view, Storage $storage, $date_format = self::FORMAT)
{
$this->view = $view;
$this->storage = $storage;
$this->date_format = (string)$date_format;
}
public function get_view(string $context): ?View
{
return $this->view;
}
public function get_value(int $id)
{
$value = DateTime::createFromFormat($this->date_format, $this->storage->get($id));
return $value
? $value->format(self::FORMAT)
: false;
}
public function update(int $id, $data): void
{
$value = $data;
if ($value) {
$timestamp = ac_helper()->date->strtotime($value);
$date_time = $timestamp ? DateTime::createFromFormat('U', $timestamp) : null;
$value = $date_time
? $date_time->format($this->date_format)
: false;
}
$this->storage->update($id, $value);
}
}