Moved all service tasks to minion
This commit is contained in:
@@ -1,35 +0,0 @@
|
||||
<?php defined('SYSPATH') or die('No direct access allowed.');
|
||||
|
||||
/**
|
||||
* This class provides OSB service task capabilities.
|
||||
*
|
||||
* @package Service
|
||||
* @category Controllers/Task
|
||||
* @author Deon George
|
||||
* @copyright (c) 2009-2013 Open Source Billing
|
||||
* @license http://dev.osbill.net/license.html
|
||||
*/
|
||||
class Controller_Task_Service extends Controller_Task {
|
||||
private function _traffic_suppliers($active=FALSE) {
|
||||
$suppliers = ORM::factory('ADSL_Supplier');
|
||||
|
||||
return $active ? $suppliers->list_active() : $suppliers->find_all();
|
||||
}
|
||||
|
||||
/**
|
||||
* Charges for excess traffic usage
|
||||
*/
|
||||
public function action_chargetraffic() {
|
||||
foreach ($this->_traffic_suppliers(TRUE) as $aso)
|
||||
$traffic = Service_Traffic_Adsl::instance($aso->name)->charge_excess_traffic();
|
||||
}
|
||||
|
||||
/**
|
||||
* Send alerts to users when they exceed their traffic allowance
|
||||
*/
|
||||
public function action_alerttraffic() {
|
||||
foreach ($this->_traffic_suppliers(TRUE) as $aso)
|
||||
$traffic = Service_Traffic_Adsl::instance($aso->name)->alert_traffic();
|
||||
}
|
||||
}
|
||||
?>
|
Reference in New Issue
Block a user