Last change
on this file since 553 was 553, checked in by chronos, 12 years ago |
- Upraveno: Ze souborů odstraněna ukončovací značka PHP kódu.
|
-
Property svn:executable
set to
*
|
File size:
1.2 KB
|
Line | |
---|
1 | <?php
|
---|
2 |
|
---|
3 | $IsDeveloper = in_array($_SERVER['REMOTE_ADDR'], array('127.0.0.1'));
|
---|
4 |
|
---|
5 | $DefaultConfig = array(
|
---|
6 | 'Database' => array(
|
---|
7 | 'Host' => 'localhost',
|
---|
8 | 'User' => 'root',
|
---|
9 | 'Password' => '',
|
---|
10 | 'Database' => 'wowpreklad',
|
---|
11 | 'DatabaseAoWoW' => 'wowpreklad_mangos',
|
---|
12 | 'Prefix' => '',
|
---|
13 | 'Charset' => 'utf8',
|
---|
14 | 'MangosPrefix' => '',
|
---|
15 | ),
|
---|
16 | 'Style' => 'maron',
|
---|
17 | 'Web' => array(
|
---|
18 | 'Title' => 'Projekt překládání textů hry WoW',
|
---|
19 | 'Charset' => 'utf-8',
|
---|
20 | 'Host' => 'localhost',
|
---|
21 | 'BaseURL' => '',
|
---|
22 | 'AdminEmail' => 'admin@localhost',
|
---|
23 | 'Authors' => 'autor',
|
---|
24 | 'ShowSQLQuery' => false,
|
---|
25 | 'ShowSQLError' => $IsDeveloper,
|
---|
26 | 'LogSQLQuery' => $IsDeveloper,
|
---|
27 | 'ShowPHPError' => $IsDeveloper,
|
---|
28 | 'ShowRuntimeInfo' => $IsDeveloper,
|
---|
29 | 'FormatOutput' => $IsDeveloper,
|
---|
30 | 'ItemsPerPage' => 40,
|
---|
31 | 'TempFolder' => '../tmp/',
|
---|
32 | 'GameVersion' => '3.3.5a',
|
---|
33 | 'VisiblePagingItems' => 20,
|
---|
34 | 'Timezone' => 'Europe/Prague',
|
---|
35 | 'WebCounter' => '',
|
---|
36 | 'Advertisement' => '',
|
---|
37 | ),
|
---|
38 | 'ForbiddedUserNames' => array('addon', 'admin', 'administrator'),
|
---|
39 | 'ExportTaskProcessPeriod' => 10,
|
---|
40 | 'MaxExportPerUser' => 10,
|
---|
41 | 'AoWoWExportId' => 1,
|
---|
42 | 'OriginalLanguage' => 1,
|
---|
43 | 'SystemPassword' => '',
|
---|
44 | );
|
---|
Note:
See
TracBrowser
for help on using the repository browser.