mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-17 01:54:49 +00:00
vpn/l2tp: pull pages together in menu
This commit is contained in:
parent
4f06b9bd29
commit
3cb9dfab36
@ -228,9 +228,11 @@
|
||||
<KeysEdit url="/vpn_ipsec_keys_edit.php"/>
|
||||
<AdvancedSettings url="/vpn_ipsec_settings.php"/>
|
||||
</IPsec>
|
||||
<L2TP url="/vpn_l2tp.php">
|
||||
<L2TPUsers url="/vpn_l2tp_users.php"/>
|
||||
<L2TPUsersEdit url="/vpn_l2tp_users_edit.php*"/>
|
||||
<L2TP cssClass="fa fa-road">
|
||||
<Settings url="/vpn_l2tp.php"/>
|
||||
<Users url="/vpn_l2tp_users.php">
|
||||
<Edit url="/vpn_l2tp_users_edit.php*"/>
|
||||
</Users>
|
||||
</L2TP>
|
||||
<OpenVPN url="/vpn_openvpn_server.php">
|
||||
<ServerEdit url="/vpn_openvpn_server.php?*"/>
|
||||
|
||||
@ -244,10 +244,6 @@ $shortcuts['pppoes'] = array();
|
||||
$shortcuts['pppoes']['main'] = "vpn_pppoe.php";
|
||||
$shortcuts['pppoes']['log'] = "diag_logs_vpn.php?vpntype=poes";
|
||||
|
||||
$shortcuts['l2tps'] = array();
|
||||
$shortcuts['l2tps']['main'] = "vpn_l2tp.php";
|
||||
$shortcuts['l2tps']['log'] = "diag_logs_vpn.php?vpntype=l2tp";
|
||||
|
||||
$shortcuts['snmp'] = array();
|
||||
$shortcuts['snmp']['main'] = "services_snmp.php";
|
||||
$shortcuts['snmp']['service'] = "bsnmpd";
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
Copyright (C) 2014-2015 Deciso B.V.
|
||||
Copyright (C) 2005 Scott Ullrich (sullrich@gmail.com)
|
||||
@ -26,8 +27,7 @@
|
||||
POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
$pgtitle = array(gettext("VPN"), gettext("L2TP"), gettext("L2TP"));
|
||||
$shortcut_section = "l2tps";
|
||||
$pgtitle = array(gettext('VPN'), gettext('L2TP'), gettext('Settings'));
|
||||
|
||||
require_once("guiconfig.inc");
|
||||
require_once("vpn.inc");
|
||||
@ -295,13 +295,6 @@ function enable_change(enable_over) {
|
||||
|
||||
<section class="col-xs-12">
|
||||
|
||||
<?php
|
||||
$tab_array = array();
|
||||
$tab_array[0] = array(gettext("Configuration"), true, "vpn_l2tp.php");
|
||||
$tab_array[1] = array(gettext("Users"), false, "vpn_l2tp_users.php");
|
||||
display_top_tabs($tab_array);
|
||||
?>
|
||||
|
||||
<div class="tab-content content-box col-xs-12">
|
||||
|
||||
<form action="vpn_l2tp.php" method="post" name="iform" id="iform">
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
Copyright (C) 2014-2015 Deciso B.V.
|
||||
Copyright (C) 2005 Scott Ullrich (sullrich@gmail.com)
|
||||
@ -26,13 +27,11 @@
|
||||
POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
$pgtitle = array(gettext("VPN"),gettext("L2TP"),gettext("Users"));
|
||||
$shortcut_section = "l2tps";
|
||||
$pgtitle = array(gettext('VPN'),gettext('L2TP'),gettext('Users'));
|
||||
|
||||
require_once("guiconfig.inc");
|
||||
require_once("vpn.inc");
|
||||
|
||||
|
||||
if (!isset($config['l2tp']['user'])) {
|
||||
$config['l2tp']['user'] = array();
|
||||
}
|
||||
@ -98,13 +97,6 @@ endif; ?>
|
||||
|
||||
<section class="col-xs-12">
|
||||
|
||||
<?php
|
||||
$tab_array = array();
|
||||
$tab_array[0] = array(gettext("Configuration"), false, "vpn_l2tp.php");
|
||||
$tab_array[1] = array(gettext("Users"), true, "vpn_l2tp_users.php");
|
||||
display_top_tabs($tab_array);
|
||||
?>
|
||||
|
||||
<div class="tab-content content-box col-xs-12">
|
||||
|
||||
<form action="vpn_l2tp_users.php" method="post" name="iform" id="iform">
|
||||
|
||||
@ -1,4 +1,5 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
Copyright (C) 2014-2015 Deciso B.V.
|
||||
Copyright (C) 2006 Scott Ullrich (sullrich@gmail.com)
|
||||
@ -26,8 +27,7 @@
|
||||
POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
$pgtitle = array(gettext("VPN"),gettext("L2TP"),gettext("User"),gettext("Edit"));
|
||||
$shortcut_section = "l2tps";
|
||||
$pgtitle = array(gettext('VPN'), gettext('L2TP'), gettext('Edit User'));
|
||||
|
||||
function l2tpusercmp($a, $b)
|
||||
{
|
||||
@ -161,13 +161,6 @@ include("head.inc");
|
||||
|
||||
<section class="col-xs-12">
|
||||
|
||||
<?php
|
||||
$tab_array = array();
|
||||
$tab_array[0] = array(gettext("Configuration"), false, "vpn_l2tp.php");
|
||||
$tab_array[1] = array(gettext("Users"), true, "vpn_l2tp_users.php");
|
||||
display_top_tabs($tab_array);
|
||||
?>
|
||||
|
||||
<div class="tab-content content-box col-xs-12">
|
||||
|
||||
<form action="vpn_l2tp_users_edit.php" method="post" name="iform" id="iform">
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user