git-svn-id: file:///svn-source/pmgr/branches/single_site_sandbox_20090905@838 97e9348a-65ac-dc4b-aefc-98561f571b83
21 lines
415 B
PHP
21 lines
415 B
PHP
<?php
|
|
class DATABASE_CONFIG {
|
|
|
|
var $default = array(
|
|
'driver' => 'mysql',
|
|
'persistent' => false,
|
|
'host' => 'localhost',
|
|
'login' => 'pmgr',
|
|
'password' => 'pmgruser',
|
|
'database' => 'property_manager',
|
|
'prefix' => 'pmgr_',
|
|
);
|
|
|
|
function __construct() {
|
|
if (devbox())
|
|
$this->default['database'] = 'pmgr_dev';
|
|
if (sandbox())
|
|
$this->default['database'] = 'pmgr_sand';
|
|
}
|
|
}
|
|
?>
|