Core lib of filesite.io, a small PHP Framework.
https://fsc.filesite.io
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
636 B
16 lines
636 B
<?php |
|
/** |
|
* Config |
|
*/ |
|
return array( |
|
'default_timezone' => 'Asia/Hong_Kong', //timezone, check more: https://www.php.net/manual/en/timezones.asia.php |
|
|
|
'content_directory' => 'content', //directory of contents |
|
'theme' => '', //name of theme which is enabled |
|
//when it's empty, use layout and views in directory views/ |
|
'default_layout' => 'main', //default layout |
|
'error_layout' => 'error', //exception layout, show error title and content |
|
|
|
//for debug, log directory: ../runtime/logs/ |
|
'debug' => false, |
|
);
|
|
|