Improvements to payment and other misc items

This commit is contained in:
Deon George
2013-06-19 19:26:07 +10:00
parent 1caeed6606
commit 3499776ddc
33 changed files with 569 additions and 530 deletions

View File

@@ -0,0 +1,34 @@
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* OSB Caching
*
* @package OSB
* @subpackage System
* @category Configuration
* @author Deon George
* @copyright (c) 2010 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
return array(
'orm'=>array(
'account'=>10,
'account_log'=>86400,
'account_group'=>60,
'country'=>86400,
'currency'=>86400,
'invoice'=>60,
'invoice_item'=>60,
'invoice_item_tax'=>60,
'service'=>60,
'group'=>86400,
'language'=>86400,
'payment'=>60,
'payment_item'=>60,
'module'=>86400,
'module_method'=>86400,
'setup'=>86400,
),
);
?>