* @copyright (cc) creative commons - attribution-shareAlike 3.0 unported * @version 1.13 * @package app * @subpackage config */ final class config extends qoob_config { public function init() { $this->data = array( //---qoob 'debug' => false, 'dirtyURLs' => false, //---database 'db_host' => 'localhost', 'db_user' => 'root', 'db_pass' => '', 'db_name' => 'qoob', //---email 'email' => 'open@qoob.nu', //---blog 'posts_per_page' => 7, //---antispam 'akismetKey' => 'o0o0o0o0o0o0o', 'siteURL' => 'http://open.qoob.nu/', 'siteName' => 'open.qoob.nu/1.0', ); } } ?>