* OLT ONT Mac-Adressen Anzeige
* Performancesteigerung Serviceports

Bugfixing:
* Kundenanzeige nun auch bei Datatables Link
* Uptime wird nun korrekt angezeigt
* Textuelle Korrekturen
This commit is contained in:
Spitzer_Daniel
2023-07-17 19:44:05 +02:00
parent 81ba7c633c
commit d3576ecafb
3 changed files with 140 additions and 46 deletions

View File

@@ -251,6 +251,9 @@ class DeviceController extends mfBaseController
case "getontinfo":
$return = $this->getontInfo($ip, $portid, $ont);
break;
case "getontinfomac":
$return = $this->getontInfoMac($ip, $portid, $ont);
break;
case "changeoltsplitter":
$return = $this->changeoltSplitter($id, $portid, $ports);
break;
@@ -325,6 +328,16 @@ class DeviceController extends mfBaseController
$r = $this->request;
$id = $r->id;
$getOntInfo = DeviceModel::getontInfo($ip, $portid, $ont);
echo json_encode($getOntInfo);
exit;
}
private function getontInfoMac($ip, $portid, $ont)
{
$r = $this->request;
$id = $r->id;
$getOntInfo = DeviceModel::getontInfoMac($ip, $portid, $ont);
echo json_encode($getOntInfo);
exit;
}