Added session messages display Fixed field and validator loading. Updated form validation Updated root config management Muted error reporting in file evaluation Added menu updates Fixed galaxy data access error Fixed config bug Added HTTP request method checks Added Form manager Fixed core bugs Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
35 lines
No EOL
1,006 B
Text
35 lines
No EOL
1,006 B
Text
<?php return array(
|
|
'global' => array(
|
|
'storyline' => array(
|
|
'universe' => 'legacies',
|
|
'episode' => 'default',
|
|
),
|
|
'web' => array(
|
|
'base_url' => 'http://testing.xnova-legacies.org/'
|
|
),
|
|
'date' => array(
|
|
'timezone' => 'Europe/Paris'
|
|
),
|
|
'database' => array(
|
|
'engine' => 'mysql',
|
|
'options' => array(
|
|
'hostname' => 'localhost',
|
|
'username' => 'root',
|
|
'password' => '',
|
|
'database' => 'db_xnova'
|
|
),
|
|
'table_prefix' => 'game_',
|
|
),
|
|
'layout' => array(
|
|
'page' => 'page.php',
|
|
'admin' => 'admin.php',
|
|
'empire' => 'empire.php'
|
|
),
|
|
'locales' => array(
|
|
'fr' => 'fr_FR',
|
|
'fr_FR' => 'fr_FR',
|
|
'en' => 'en_US',
|
|
'en_US' => 'en_US'
|
|
)
|
|
)
|
|
); |