16 lines
295 B
PHP
16 lines
295 B
PHP
|
<?php
|
||
|
$defaultController = 'introduction';
|
||
|
$defaultAction = 'start';
|
||
|
$language = 'english';
|
||
|
|
||
|
$controllerParameter = 'c';
|
||
|
$actionParameter = 'a';
|
||
|
|
||
|
$development = true;
|
||
|
$logErrors = true;
|
||
|
$urlParameters = false;
|
||
|
$sessionDatabase = false;
|
||
|
|
||
|
$libraries = array();
|
||
|
$helpers = array();
|
||
|
?>
|