Added traffic collection of Exetel Ethernet

This commit is contained in:
Deon George
2011-08-04 12:53:33 +10:00
parent f1c960aa9f
commit c1b7196f41
3 changed files with 199 additions and 9 deletions

View File

@@ -37,5 +37,12 @@ class Model_ADSL_Supplier extends ORMOSB {
return $services;
}
/**
* Return a list of active suppliers
*/
public function active() {
return $this->where('status','=',1)->find_all();
}
}
?>