1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-01-18 05:38:40 +01:00
LinkAce/config/linkace.php

41 lines
704 B
PHP
Raw Normal View History

2018-08-23 15:30:12 +02:00
<?php
return [
'default' => [
'pagination' => 25,
'date_format' => 'Y-m-d',
'time_format' => 'H:i',
'cache_duration' => 60, // minutes
2018-08-23 15:30:12 +02:00
],
2019-09-13 10:36:59 +02:00
'listitem_count_values' => [
12,
24,
60,
72,
120,
],
2019-09-13 10:36:59 +02:00
'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',
],
],
2018-08-23 15:30:12 +02:00
];