Files
lichterei-web/kirby/config/fields/mixins/datetime.php
Bastian Allgeier 9109130c9c Upgrade to 3.5
2020-12-15 12:21:40 +01:00

21 lines
526 B
PHP
Executable File

<?php
return [
'methods' => [
'toDatetime' => function ($value, string $format = 'Y-m-d H:i:s') {
if ($timestamp = timestamp($value, $this->step)) {
return date($format, $timestamp);
}
return null;
},
'toContent' => function ($value, string $format = 'Y-m-d H:i:s') {
if ($value !== null && $timestamp = strtotime($value)) {
return date($format, $timestamp);
}
return '';
}
]
];