config.php
14 lines
| 412 B
| text/x-php
|
PhpLexer
/ trunk / config.php
|
r0 | <?php | |
$config = Config::singleton(); | |||
define('DS', DIRECTORY_SEPARATOR ); | |||
$config->set('components', 'components'); | |||
$config->set('controllersFolder', 'controllers/'); | |||
$config->set('modelsFolder', 'models/'); | |||
$config->set('viewsFolder', 'templates/'); | |||
$config->set('dbhost', 'localhost'); | |||
$config->set('dbname', 'db_pbase'); | |||
$config->set('dbuser', 'root'); | |||
$config->set('dbpass', '1nf0j4syrc'); | |||
?> |