mirror of
https://github.com/getformwork/formwork.git
synced 2025-02-23 01:02:46 +01:00
17 lines
589 B
PHP
17 lines
589 B
PHP
<?php
|
|
|
|
return [
|
|
'date' => static function (int $timestamp): string {
|
|
return \Formwork\Admin\Utils\DateFormats::formatTimestamp(
|
|
$timestamp,
|
|
\Formwork\Core\Formwork::instance()->config()->get('date.format')
|
|
);
|
|
},
|
|
'datetime' => static function (int $timestamp): string {
|
|
return \Formwork\Admin\Utils\DateFormats::formatTimestamp(
|
|
$timestamp,
|
|
\Formwork\Core\Formwork::instance()->config()->get('date.format') . ' ' . \Formwork\Core\Formwork::instance()->config()->get('date.hour_format')
|
|
);
|
|
}
|
|
];
|