Overhauled export, and other minor updates

This commit is contained in:
Deon George
2013-05-14 23:53:04 +10:00
parent 81cb759667
commit c56742d127
33 changed files with 690 additions and 652 deletions

View File

@@ -0,0 +1,18 @@
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class supports OSB exporting.
*
* @package Export
* @category Model
* @author Deon George
* @copyright (c) 2009-2013 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
class Model_Export_Item extends ORM_OSB {
// Relationships
protected $_belongs_to = array(
'export_module' => array(),
);
}
?>