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',
'encoding' => 'utf8'
);
var $raw_files = array(
'datasource' => 'RawFilesSource',
'path' => '/path/to/translation',
'extension' => '(uxt|txt)',
'readonly' => true,
'recursive' => true,
);
}
?>