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/modules/payment/classes/Model/Payment/Item.php

17 lines
448 B
PHP
Raw Normal View History

2010-11-29 22:41:08 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class supports OSB exporting by rending the exportable items.
*
* @package OSB
* @subpackage Export
* @category Models
* @author Deon George
* @copyright (c) 2010 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
class Model_Payment_Item extends ORM_OSB {
2010-11-29 22:41:08 +00:00
protected $_belongs_to = array('payment'=>array(),'invoice'=>array());
}
2011-08-16 02:27:19 +00:00
?>