source: branches/mvc/Base/Config/ConfigSample.php

Last change on this file was 59, checked in by chronos, 9 years ago
  • Moved trunk as mvc branch.
File size: 870 bytes
Line 
1<?php
2
3$Config = array
4(
5 'Database' => array
6 (
7 'Host' => 'localhost',
8 'User' => 'root',
9 'Password' => '',
10 'Database' => 'statistic',
11 'Prefix' => '',
12 'Charset' => 'utf8',
13 ),
14 'System' => array
15 (
16 'FormatHTML' => false,
17 'Charset' => 'utf-8',
18 'Host' => 'localhost',
19 'RootFolder' => '',
20 'Description' => 'Grafické časové statistiky',
21 'Title' => 'Grafická statistika',
22 'Admin' => 'Admin',
23 'AdminEmail' => 'admin@localhost',
24 'ShowSQLError' => false,
25 'ShowSQLQuery' => false,
26 'ShowPHPError' => false,
27 'ShowRuntimeInfo' => false,
28 'FormatHTML' => false,
29 'ErrorLogFile' => 'php_script_error.log',
30 'TableRowPerPage' => 30,
31 'Style' => 'Basic',
32 'Locale' => 'cs_CZ',
33 'PageRefreshPeriod' => 5000,
34 ),
35 'SystemPassword' => sha1('test'),
36);
Note: See TracBrowser for help on using the repository browser.