mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-13 16:14:40 +00:00
Services / DHCP - rename DHCP to ISC DHCP
This commit is contained in:
parent
42fd27df77
commit
1dab8ca715
@ -332,36 +332,36 @@ class MenuSystem
|
||||
// add interfaces to "Services: DHCPv[46]" menu tab:
|
||||
$ordid = 0;
|
||||
foreach ($iftargets['dhcp4'] as $key => $descr) {
|
||||
$this->appendItem('Services.DHCPv4', $key, array(
|
||||
$this->appendItem('Services.ISC_DHCPv4', $key, array(
|
||||
'url' => '/services_dhcp.php?if=' . $key,
|
||||
'visiblename' => "[$descr]",
|
||||
'order' => $ordid++,
|
||||
));
|
||||
$this->appendItem('Services.DHCPv4.' . $key, 'Edit' . $key, array(
|
||||
$this->appendItem('Services.ISC_DHCPv4.' . $key, 'Edit' . $key, array(
|
||||
'url' => '/services_dhcp.php?if=' . $key . '&*',
|
||||
'visibility' => 'hidden',
|
||||
));
|
||||
$this->appendItem('Services.DHCPv4.' . $key, 'AddStatic' . $key, array(
|
||||
$this->appendItem('Services.ISC_DHCPv4.' . $key, 'AddStatic' . $key, array(
|
||||
'url' => '/services_dhcp_edit.php?if=' . $key,
|
||||
'visibility' => 'hidden',
|
||||
));
|
||||
$this->appendItem('Services.DHCPv4.' . $key, 'EditStatic' . $key, array(
|
||||
$this->appendItem('Services.ISC_DHCPv4.' . $key, 'EditStatic' . $key, array(
|
||||
'url' => '/services_dhcp_edit.php?if=' . $key . '&*',
|
||||
'visibility' => 'hidden',
|
||||
));
|
||||
}
|
||||
$ordid = 0;
|
||||
foreach ($iftargets['dhcp6'] as $key => $descr) {
|
||||
$this->appendItem('Services.DHCPv6', $key, array(
|
||||
$this->appendItem('Services.ISC_DHCPv6', $key, array(
|
||||
'url' => '/services_dhcpv6.php?if=' . $key,
|
||||
'visiblename' => "[$descr]",
|
||||
'order' => $ordid++,
|
||||
));
|
||||
$this->appendItem('Services.DHCPv6.' . $key, 'Add' . $key, array(
|
||||
$this->appendItem('Services.ISC_DHCPv6.' . $key, 'Add' . $key, array(
|
||||
'url' => '/services_dhcpv6_edit.php?if=' . $key,
|
||||
'visibility' => 'hidden',
|
||||
));
|
||||
$this->appendItem('Services.DHCPv6.' . $key, 'Edit' . $key, array(
|
||||
$this->appendItem('Services.ISC_DHCPv6.' . $key, 'Edit' . $key, array(
|
||||
'url' => '/services_dhcpv6_edit.php?if=' . $key . '&*',
|
||||
'visibility' => 'hidden',
|
||||
));
|
||||
|
||||
@ -177,15 +177,15 @@
|
||||
</LogFiles>
|
||||
</Firewall>
|
||||
<Services order="60" cssClass="fa fa-cog">
|
||||
<DHCPv4 cssClass="fa fa-bullseye fa-fw">
|
||||
<ISC_DHCPv4 VisibleName="ISC DHCPv4" cssClass="fa fa-bullseye fa-fw">
|
||||
<Relay order="200" url="/services_dhcp_relay.php"/>
|
||||
<Leases order="300" url="/ui/dhcpv4/leases"/>
|
||||
<LogFile VisibleName="Log File" order="400" url="/ui/diagnostics/log/core/dhcpd"/>
|
||||
</DHCPv4>
|
||||
<DHCPv6 cssClass="fa fa-bullseye fa-fw">
|
||||
</ISC_DHCPv4>
|
||||
<ISC_DHCPv6 VisibleName="ISC DHCPv6" cssClass="fa fa-bullseye fa-fw">
|
||||
<Relay order="300" url="/services_dhcpv6_relay.php"/>
|
||||
<Leases order="400" url="/ui/dhcpv6/leases"/>
|
||||
</DHCPv6>
|
||||
</ISC_DHCPv6>
|
||||
<OpenDNS VisibleName="OpenDNS" url="/services_opendns.php" cssClass="fa fa-tags fa-fw"/>
|
||||
<RouterAdv VisibleName="Router Advertisements" cssClass="fa fa-bullseye fa-fw" />
|
||||
</Services>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user