Overhauled export, and other minor updates
This commit is contained in:
19
modules/export/classes/Export/Plugin.php
Normal file
19
modules/export/classes/Export/Plugin.php
Normal file
@@ -0,0 +1,19 @@
|
||||
<?php defined('SYSPATH') or die('No direct access allowed.');
|
||||
|
||||
/**
|
||||
* This class enables common Export functions for Plugins
|
||||
*
|
||||
* @package Export
|
||||
* @category Plugins
|
||||
* @author Deon George
|
||||
* @copyright (c) 2009-2013 Open Source Billing
|
||||
* @license http://dev.osbill.net/license.html
|
||||
*/
|
||||
abstract class Export_Plugin {
|
||||
protected $emo; // Our Export Object
|
||||
|
||||
public function __construct(Model_Export_Module $emo) {
|
||||
$this->emo = $emo;
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user