17 lines
448 B
PHP
17 lines
448 B
PHP
<?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 {
|
|
protected $_belongs_to = array('payment'=>array(),'invoice'=>array());
|
|
}
|
|
?>
|