source: Base/Config/ConfigSample.php

Last change on this file was 1, checked in by george, 15 years ago
  • Přidáno: Výchozí verze systému.
File size: 824 bytes
Line 
1<?php
2
3$Config = array(
4 'Database' => array
5 (
6 'Host' => 'localhost',
7 'User' => 'root',
8 'Password' => '',
9 'Database' => 'dispecink',
10 'Prefix' => '',
11 'Charset' => 'utf8',
12 ),
13 'Web' => array
14 (
15 'FormatHTML' => false,
16 'Charset' => 'utf-8',
17 'Host' => 'localhost',
18 'RootFolder' => '',
19 'Description' => 'Dispečink výtahů',
20 'Title' => 'Dispečink výtahů',
21 'Admin' => 'Admin',
22 'AdminEmail' => 'admin@localhost',
23 'ShowSQLError' => false,
24 'ShowSQLQuery' => false,
25 'ShowPHPError' => false,
26 'ShowRuntimeInfo' => false,
27 'FormatHTML' => false,
28 'ErrorLogFile' => 'php_script_error.log',
29 'TableRowPerPage' => 30,
30 'Style' => 'Basic',
31 'Locale' => 'cs',
32 'PageRefreshPeriod' => 5000,
33 ),
34);
35
36?>
Note: See TracBrowser for help on using the repository browser.