diff options
Diffstat (limited to 'public/system/config/install.php')
-rw-r--r-- | public/system/config/install.php | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/public/system/config/install.php b/public/system/config/install.php new file mode 100644 index 0000000..308d2e2 --- /dev/null +++ b/public/system/config/install.php @@ -0,0 +1,34 @@ +<?php +// Site +$_['site_base'] = HTTP_SERVER; +$_['site_ssl'] = HTTP_SERVER; + +// Language +$_['language_default'] = 'en-gb'; +$_['language_autoload'] = array('en-gb'); + +// Session +$_['session_engine'] = 'file'; +$_['session_autostart'] = true; +$_['session_name'] = 'OCSESSID'; + +// Template +$_['template_engine'] = 'twig'; +$_['template_cache'] = true; + +// Actions +$_['action_default'] = 'install/step_1'; +$_['action_router'] = 'startup/router'; +$_['action_error'] = 'error/not_found'; +$_['action_pre_action'] = array( + 'startup/language', + 'startup/upgrade', + 'startup/database' +); + +// Action Events +$_['action_event'] = array( + 'view/*/before' => array( + 'event/theme' + ) +); |