khanat-opennel-code/code/web/public_php/webtt/app/config/database.php

21 lines
410 B
PHP
Raw Normal View History

<?php
class DATABASE_CONFIG {
var $default = array(
'driver' => 'mysqli',
'persistent' => false,
'host' => 'localhost',
'login' => 'webtt',
'password' => 'webtt77',
'database' => 'webtt2',
2011-07-14 14:49:25 +00:00
'encoding' => 'utf8'
);
var $raw_files = array(
2011-07-14 14:49:25 +00:00
'datasource' => 'RawFilesSource',
2011-08-21 00:54:22 +00:00
'path' => '/path/to/translation',
2011-07-14 14:49:25 +00:00
'extension' => '(uxt|txt)',
'readonly' => true,
'recursive' => true,
);
}
?>