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.
17 lines
572 B
17 lines
572 B
3 years ago
|
<?php
|
||
|
/**
|
||
|
* Config
|
||
|
*/
|
||
|
return array(
|
||
|
'default_timezone' => 'Asia/HonKong', //timezone
|
||
|
|
||
|
'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,
|
||
|
);
|