36 lines
667 B
PHP
36 lines
667 B
PHP
<?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,
|
|
'record_id'=>0,
|
|
'setup'=>86400,
|
|
),
|
|
);
|
|
?>
|