blob: 308d2e2ab9275f0bbf9a84676fe696a7c7940438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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'
)
);
|