Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpnSense
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kulya
OpnSense
Commits
fd84f720
Commit
fd84f720
authored
Apr 13, 2015
by
Franco Fichtner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
www: last batch of tabs, mhh, someone forgot the routing tabs...
parent
4b3cc0a3
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
26 deletions
+16
-26
system_firmware_check.php
src/www/system_firmware_check.php
+1
-1
system_firmware_settings.php
src/www/system_firmware_settings.php
+1
-1
system_firmware_tabs.inc
src/www/system_firmware_tabs.inc
+0
-0
system_gateway_groups.php
src/www/system_gateway_groups.php
+1
-8
system_gateways.php
src/www/system_gateways.php
+2
-8
system_gateways_tabs.inc
src/www/system_gateways_tabs.inc
+10
-0
system_gateways_tabs.php
src/www/system_gateways_tabs.php
+0
-0
system_routes.php
src/www/system_routes.php
+1
-8
No files found.
src/www/system_firmware_check.php
View file @
fd84f720
...
...
@@ -111,7 +111,7 @@ include("head.inc");
<div
class=
"row"
>
<section
class=
"col-xs-12"
>
<?
include
(
'system_firmware_tabs.
php
'
);
?>
<?
include
(
'system_firmware_tabs.
inc
'
);
?>
<div
class=
"content-box tab-content"
>
...
...
src/www/system_firmware_settings.php
View file @
fd84f720
...
...
@@ -64,7 +64,7 @@ include("head.inc");
?>
<section
class=
"col-xs-12"
>
<?
include
(
'system_firmware_tabs.
php
'
);
?>
<?
include
(
'system_firmware_tabs.
inc
'
);
?>
<div
class=
"content-box tab-content"
>
...
...
src/www/system_firmware_tabs.
php
→
src/www/system_firmware_tabs.
inc
View file @
fd84f720
File moved
src/www/system_gateway_groups.php
View file @
fd84f720
...
...
@@ -121,14 +121,7 @@ $main_buttons = array(
<section
class=
"col-xs-12"
>
<?php
$tab_array
=
array
();
$tab_array
[
0
]
=
array
(
gettext
(
"Gateways"
),
false
,
"system_gateways.php"
);
$tab_array
[
1
]
=
array
(
gettext
(
"Routes"
),
false
,
"system_routes.php"
);
$tab_array
[
2
]
=
array
(
gettext
(
"Groups"
),
true
,
"system_gateway_groups.php"
);
display_top_tabs
(
$tab_array
);
?>
<?
include
(
'system_gateways_tabs.inc'
);
?>
<div
class=
"tab-content content-box col-xs-12"
>
...
...
src/www/system_gateways.php
View file @
fd84f720
<?php
/*
Copyright (C) 2014-2015 Deciso B.V.
Copyright (C) 2010 Seth Mos <seth.mos@dds.nl>.
...
...
@@ -200,14 +201,7 @@ $main_buttons = array(
?>
<section
class=
"col-xs-12"
>
<?php
$tab_array
=
array
();
$tab_array
[
0
]
=
array
(
gettext
(
"Gateways"
),
true
,
"system_gateways.php"
);
$tab_array
[
1
]
=
array
(
gettext
(
"Routes"
),
false
,
"system_routes.php"
);
$tab_array
[
2
]
=
array
(
gettext
(
"Groups"
),
false
,
"system_gateway_groups.php"
);
display_top_tabs
(
$tab_array
);
?>
<?
include
(
'system_gateways_tabs.php'
);
?>
<?
include
(
'system_gateways_tabs.inc'
);
?>
<div
class=
"content-box"
>
...
...
src/www/system_gateways_tabs.inc
0 → 100644
View file @
fd84f720
<?php
$active_tab
=
isset
(
$active_tab
)
?
$active_tab
:
$_SERVER
[
'PHP_SELF'
];
$tab_array
=
array
();
$tab_array
[
0
]
=
array
(
gettext
(
"Gateways"
),
$active_tab
==
"/system_gateways.php"
,
"system_gateways.php"
);
$tab_array
[
1
]
=
array
(
gettext
(
"Routes"
),
$active_tab
==
"/system_routes.php"
,
"system_routes.php"
);
$tab_array
[
2
]
=
array
(
gettext
(
"Groups"
),
$active_tab
==
"/system_gateway_groups.php"
,
"system_gateway_groups.php"
);
display_top_tabs
(
$tab_array
);
src/www/system_gateways_tabs.php
deleted
100644 → 0
View file @
4b3cc0a3
src/www/system_routes.php
View file @
fd84f720
...
...
@@ -216,14 +216,7 @@ $main_buttons = array(
<section
class=
"col-xs-12"
>
<?php
$tab_array
=
array
();
$tab_array
[
0
]
=
array
(
gettext
(
"Gateways"
),
false
,
"system_gateways.php"
);
$tab_array
[
1
]
=
array
(
gettext
(
"Routes"
),
true
,
"system_routes.php"
);
$tab_array
[
2
]
=
array
(
gettext
(
"Groups"
),
false
,
"system_gateway_groups.php"
);
display_top_tabs
(
$tab_array
);
?>
<?
include
(
'system_gateways_tabs.inc'
);
?>
<div
class=
"tab-content content-box col-xs-12"
>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment