1 | <?php |
||
16 | class ColumnDateTime extends Column |
||
17 | { |
||
18 | /** |
||
19 | * @var string |
||
20 | */ |
||
21 | protected $align = 'right'; |
||
22 | |||
23 | /** |
||
24 | * @var string |
||
25 | */ |
||
26 | protected $format = 'j. n. Y'; |
||
27 | |||
28 | |||
29 | /** |
||
30 | * Format row item value as DateTime |
||
31 | * @param Row $row |
||
32 | * @return string |
||
33 | */ |
||
34 | public function getColumnValue(Row $row) |
||
56 | |||
57 | |||
58 | /** |
||
59 | * Set DateTime format |
||
60 | * @param string $format |
||
61 | * @return static |
||
62 | */ |
||
63 | public function setFormat($format) |
||
69 | |||
70 | } |
||
71 |