This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/application/config/config.php

31 lines
1.2 KiB
PHP
Raw Normal View History

2010-11-29 22:41:08 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* OSB Configuration - System Default Configurable Items.
2010-11-29 22:41:08 +00:00
*
* @package OSB
* @subpackage System
2010-11-29 22:41:08 +00:00
* @category Configuration
* @author Deon George
* @copyright (c) 2010 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
2010-11-29 22:41:08 +00:00
return array(
2013-02-26 03:19:32 +00:00
'appname' => 'OS Billing', // Our application name, as shown in the title bar of pages
2012-01-29 06:23:24 +00:00
'email_from' => array('noreply@graytech.net.au'=>'Graytech Hosting'),
2010-11-29 22:41:08 +00:00
'email_admin_only'=> array(
// 'adsl_traffic_notice'=>array('deon@leenooks.vpn'=>'Deon George'),
2010-11-29 22:41:08 +00:00
),
'method_security' => TRUE, // Enables Method Security. Setting to false means any method can be run without authentication
'session_change_trigger'=>array( // Updates to tables to make when our session ID is changed
'Cart'=>'session_id',
),
2011-05-02 12:28:17 +00:00
'bsb' => '633-000', // @todo This should come from the DB
'accnum' => '120 440 821', // @todo This should come from the DB
'theme' => 'focusbusiness', // @todo This should be in the DB
'theme_admin' => 'baseadmin', // @todo This should be in the DB
2013-01-14 04:59:56 +00:00
'tmpdir' => '/tmp',
2010-11-29 22:41:08 +00:00
);
?>