wootook-reloaded/application/config/system.php
Gregory PLANCHAT 66805034a6 Configuration & Layout architecture updates
Fixed production bug
Fixed styles
Updated Action Controller

Signed-off-by: Gregory PLANCHAT <g.planchat@gmail.com>
2012-01-13 23:36:03 +01:00

93 lines
No EOL
2.6 KiB
PHP

<?php return array(
'global' => array(
'resource' => array(
'database' => array(
'default' => array(
'engine' => 'mysql',
'options' => array(
),
'params' => array(
'hostname' => 'localhost',
'username' => 'root',
'password' => '',
'database' => 'db_wootook'
),
'table_prefix' => 'wtk_',
),
'core_setup' => array(
'use' => 'default'
),
'core_read' => array(
'use' => 'default'
),
'core_write' => array(
'use' => 'default'
),
)
)
),
'default' => array(
'engine' => array(
'core' => array(
'use_large_numbers' => true,
),
'universe' => array(
'galaxies' => 3,
'systems' => 100,
'positions' => 15,
),
'combat' => array(
'allow_spy_drone_attacks' => true,
)
),
'system' => array(
'date' => array(
'timezone' => 'Europe/Paris'
),
),
),
'frontend' => array(
'web' => array(
'url' => array(
'base' => null,
'skin' => null,
'js' => null,
'css' => null,
)
),
'system' => array(
'path' => array(
'base' => null,
'skin' => null,
'js' => null,
'css' => null,
)
),
'layout' => array(
'page' => 'page.php',
'empire' => 'empire.php'
),
),
'backend' => array(
'web' => array(
'url' => array(
'base' => null,
'skin' => null,
'js' => null,
'css' => null,
)
),
'system' => array(
'path' => array(
'base' => null,
'skin' => null,
'js' => null,
'css' => null,
)
),
'layout' => array(
'page' => 'page.php',
'admin' => 'admin.php'
),
)
);