1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-01-16 20:58:22 +01:00
LinkAce/config/linkace.php

41 lines
709 B
PHP

<?php
return [
'default' => [
'pagination' => 25,
'date_format' => 'Y-m-d',
'time_format' => 'H:i',
'cache_duration' => 3600, // 60 minutes
],
'listitem_count_values' => [
12,
24,
60,
72,
120,
],
'formats' => [
'date' => [
'Y-m-d',
'Y/m/d',
'Y-m-d',
'd.m.Y',
'd/m/Y',
'd-m-Y',
'm/d/Y',
'm-d-Y',
'm.d.Y',
'j.n.Y',
],
'time' => [
'H:i',
'h:i a',
'h:i A',
'G:i',
'g:i a',
'g:i A',
],
],
];