-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.php
56 lines (45 loc) · 2.28 KB
/
settings.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<?php
return [
//---------------------------------------------------------------------------//
// 1] История обновлений базы данных пакета. Не редактировать вручную. //
// History of updates of database of the package. Don't edit it manually. //
//---------------------------------------------------------------------------//
'updateshistory' => [],
//-------------------------------------------------------------------------//
// 2] История обновлений конфига пакета. Не редактировать вручную. //
// History of updates of config of the package. Don't edit it manually. //
//-------------------------------------------------------------------------//
'cnfupdshistory' => [],
//-----------------//
// 3] Локализация //
// localization //
//-----------------//
// 3.1] Поддерживаемые пакетом локали | The locales that are supported by the package //
//------------------------------------------------------------------------------------//
'locales' => ['RU', 'EN'],
// 3.2] Выбранная локаль | Chosen locale //
//---------------------------------------//
// - If the value is empty, uses config('app.locale')
// - Else if config('app.locale') not in 'locales', uses 1-st of 'locales'
// - Else if 1-st of 'locales' is empty, uses 'RU'.
'locale' => '',
//----------------------------------------//
// 4] Имя и описание пакета //
// Name and description of the package //
//----------------------------------------//
'aboutpack' => [
'RU' => [
'name' => "Timeserver",
'description' => "Timeserver package",
],
'EN' => [
'name' => "Timeserver",
'description' => "Timeserver package",
]
],
//----------------------------------------------------//
// 5] UTC-смещение в часах для возвращаемого значения //
// UTC-offset in hours for the return value //
//----------------------------------------------------//
'utcoffset' => '3'
];