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/host/classes/Model/Product/Plugin/Host.php

26 lines
624 B
PHP
Raw Normal View History

<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class supports Host products
*
2013-03-19 22:35:19 +00:00
* @package Host
* @category Models
* @author Deon George
2013-03-19 22:35:19 +00:00
* @copyright (c) 2009-2013 Open Source Billing
* @license http://dev.osbill.net/license.html
*/
2013-03-19 22:35:19 +00:00
class Model_Product_Plugin_Host extends Model_Product_Plugin {
// @todo This model doesnt have a database table
public function __construct() {
}
// Our required abstract methods
2012-03-31 03:33:13 +00:00
public function admin_update() {}
public function feature_summary() {}
// @todo This is not used, but should be.
public function order_features() {
}
}
?>