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/ssl/classes/Model/Product/Plugin/Ssl.php

25 lines
653 B
PHP
Raw Normal View History

2011-12-16 23:31:35 +00:00
<?php defined('SYSPATH') or die('No direct access allowed.');
/**
* This class supports SSL products
*
2013-03-19 22:35:19 +00:00
* @package SSL
2011-12-16 23:31:35 +00:00
* @category Models
* @author Deon George
2013-03-19 22:35:19 +00:00
* @copyright (c) 2009-2013 Open Source Billing
2011-12-16 23:31:35 +00:00
* @license http://dev.osbill.net/license.html
*/
2013-03-19 22:35:19 +00:00
class Model_Product_Plugin_Ssl extends Model_Product_Plugin {
2011-12-16 23:31:35 +00:00
protected $_table_name = 'ssl';
// Our required abstract methods
2012-03-31 03:33:13 +00:00
public function admin_update() {}
2011-12-16 23:31:35 +00:00
public function feature_summary() {
// @todo This view should render based on the the results of this::allowance();
return View::factory('product/plugin/ssl/feature_summary')
->set('po',$this);
}
}
?>