Added Access VLANs to Pop

This commit is contained in:
Frank Schubert
2021-06-29 21:18:51 +02:00
parent b99cd75df8
commit 0d002eb5b4
5 changed files with 49 additions and 3 deletions
+3
View File
@@ -75,6 +75,9 @@ class PopController extends mfBaseController {
$data['gps_lat'] = $r->gps_lat;
$data['gps_long'] = $r->gps_long;
$data['location'] = $r->location;
$data['vlan_public'] = $r->vlan_public;
$data['vlan_nat'] = $r->vlan_nat;
$data['vlan_ipv6'] = $r->vlan_ipv6;
$data['note'] = $r->note;
$data['edit_by'] = 1;
+3
View File
@@ -6,6 +6,9 @@ class PopModel {
public $gps_lat = null;
public $gps_long = null;
public $location = null;
public $vlan_public = null;
public $vlan_nat = null;
public $vlan_ipv6 = null;
public $note = null;