2011-07-14 09:09:03 +00:00
|
|
|
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class supports ADSL products
|
|
|
|
*
|
2013-03-19 22:35:19 +00:00
|
|
|
* @package ADSL
|
2011-07-14 09:09:03 +00:00
|
|
|
* @category Models
|
|
|
|
* @author Deon George
|
2013-03-19 22:35:19 +00:00
|
|
|
* @copyright (c) 2009-2013 Open Source Billing
|
2011-07-14 09:09:03 +00:00
|
|
|
* @license http://dev.osbill.net/license.html
|
|
|
|
*/
|
2013-03-22 20:37:04 +00:00
|
|
|
class Model_Product_Plugin_Adsl extends Model_Product_Plugin {
|
2011-07-14 09:09:03 +00:00
|
|
|
protected $_table_name = 'adsl_plan';
|
|
|
|
|
2011-09-28 06:46:22 +00:00
|
|
|
protected $_belongs_to = array(
|
2013-04-20 01:40:44 +00:00
|
|
|
'adsl_supplier_plan'=>array('model'=>'ADSL_Supplier_Plan'),
|
2011-07-14 09:09:03 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
protected $_display_filters = array(
|
|
|
|
'extra_down_peak'=>array(
|
|
|
|
array('Tax::add',array(':value')),
|
|
|
|
array('Currency::display',array(':value')),
|
|
|
|
),
|
|
|
|
'extra_down_offpeak'=>array(
|
|
|
|
array('Tax::add',array(':value')),
|
|
|
|
array('Currency::display',array(':value')),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
|
2012-03-30 04:13:01 +00:00
|
|
|
public function admin_update() {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
2011-09-28 06:46:22 +00:00
|
|
|
// Our required abstract methods
|
|
|
|
public function feature_summary() {
|
|
|
|
// @todo This view should render based on the the results of this::allowance();
|
|
|
|
return View::factory('product/plugin/adsl/feature_summary')
|
2011-07-14 09:09:03 +00:00
|
|
|
->set('po',$this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Show the ADSL allowance as a peak/offpeak metric
|
|
|
|
*/
|
|
|
|
public function allowance($string=TRUE) {
|
|
|
|
$output = ADSL::allowance(array(
|
|
|
|
'base_down_peak'=>$this->base_down_peak,
|
|
|
|
'base_down_offpeak'=>$this->base_down_offpeak,
|
|
|
|
'base_up_peak'=>$this->base_up_peak,
|
|
|
|
'base_up_offpeak'=>$this->base_up_offpeak,
|
|
|
|
'extra_down_peak'=>$this->extra_down_peak,
|
|
|
|
'extra_down_offpeak'=>$this->extra_down_offpeak,
|
|
|
|
'extra_up_peak'=>$this->extra_up_peak,
|
|
|
|
'extra_up_offpeak'=>$this->extra_up_offpeak,
|
|
|
|
));
|
|
|
|
|
|
|
|
return $string ? implode('/',$output) : $output;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|