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
905b4300
Commit
905b4300
authored
May 02, 2016
by
Ad Schellevis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(dashboard) cleanup interface_list.widget.php
parent
77529f1d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
92 additions
and
122 deletions
+92
-122
interface_list.widget.php
src/www/widgets/widgets/interface_list.widget.php
+92
-122
No files found.
src/www/widgets/widgets/interface_list.widget.php
View file @
905b4300
<?php
/*
Copyright (C) 2014
Deciso B.V.
Copyright (C) 2014-2016
Deciso B.V.
Copyright (C) 2007 Scott Dale
Copyright (C) 2004-2005 T. Lechat <dev@lechat.org>, Manuel Kasper <mk@neon1.net>
and Jonathan Watt <jwatt@jwatt.org>.
...
...
@@ -29,110 +29,80 @@
POSSIBILITY OF SUCH DAMAGE.
*/
$nocsrf
=
true
;
require_once
(
"guiconfig.inc"
);
require_once
(
"pfsense-utils.inc"
);
require_once
(
"widgets/include/interfaces.inc"
);
require_once
(
"interfaces.inc"
);
$i
=
0
;
$iswireless
=
false
;
$ifdescrs
=
get_configured_interface_with_descr
();
?>
<table
class=
"table table-striped"
>
<?php
foreach
(
$ifdescrs
as
$ifdescr
=>
$ifname
)
{
<table
class=
"table table-striped table-condensed"
>
<tbody>
<?php
foreach
(
get_configured_interface_with_descr
()
as
$ifdescr
=>
$ifname
)
:
$ifinfo
=
get_interface_info
(
$ifdescr
);
$iswireless
=
is_interface_wireless
(
$ifdescr
);
?>
$iswireless
=
is_interface_wireless
(
$ifdescr
);
?>
<tr>
<td
class=
"vncellt"
>
<?php
if
(
isset
(
$ifinfo
[
'ppplink'
]))
{
?>
<span
alt=
"3g"
class=
"glyphicon glyphicon-phone text-success"
></span>
<?php
}
elseif
(
$iswireless
)
{
if
(
$ifinfo
[
'status'
]
==
'associated'
||
$ifinfo
[
'status'
]
==
'up'
)
{
?>
<td
>
<?php
if
(
isset
(
$ifinfo
[
'ppplink'
]))
:?>
<
span
alt
=
"3g"
class
="
glyphicon
glyphicon
-
phone
text
-
success
"></span>
<?php
elseif (
$iswireless
):
if (
$ifinfo['status']
== 'associated' ||
$ifinfo['status']
== 'up'):
?>
<span alt="
wlan
" class="
glyphicon
glyphicon
-
signal
text
-
success
"></span>
<?php
}
else
{
?>
<?php
else:?>
<span alt="
wlan_d
" class="
glyphicon
glyphicon
-
signal
text
-
danger
"></span>
<?php
}
?>
<?php
}
else
{
?>
<?php
if
(
$ifinfo
[
'status'
]
==
"up"
)
{
?>
<span
alt=
"cablenic"
id=
"
<?php
echo
$ifname
.
'icon'
;
?>
"
class=
"glyphicon glyphicon-transfer text-success"
></span>
<?php
}
else
{
?>
<span
alt=
"cablenic"
id=
"
<?php
echo
$ifname
.
'icon'
;
?>
"
class=
"glyphicon glyphicon-transfer text-danger"
></span>
<?php
}
?>
<?php
}
?>
<strong><u>
<span
onclick=
"location.href='/interfaces.php?if=
<?=
$ifdescr
;
?>
'"
style=
"cursor:pointer"
>
<?=
htmlspecialchars
(
$ifname
);
?>
</span></u></strong>
<?php
if
(
isset
(
$ifinfo
[
'dhcplink'
]))
{
echo
" (DHCP)"
;
}
?>
</td>
<?php
if
(
$ifinfo
[
'status'
]
==
"up"
||
$ifinfo
[
'status'
]
==
"associated"
)
{
?>
<td
class=
"listr"
align=
"center"
>
<span
id=
"
<?php
echo
$ifname
;
?>
"
class=
"glyphicon glyphicon-arrow-up text-success"
></span>
</td>
<?php
}
elseif
(
$ifinfo
[
'status'
]
==
"no carrier"
)
{
?>
<td
class=
"listr"
align=
"center"
>
<span
id=
"
<?php
echo
$ifname
;
?>
"
class=
"glyphicon glyphicon-arrow-down text-danger"
></span>
</td>
<?php
}
elseif
(
$ifinfo
[
'status'
]
==
"down"
)
{
?>
<td
class=
"listr"
align=
"center"
>
<span
id=
"
<?php
echo
$ifname
;
?>
"
class=
"glyphicon glyphicon-arrow-remove text-danger"
></span>
<?php
endif;?>
<?php
else:?>
<?php
if (
$ifinfo['status']
== "
up
"):?>
<span alt="
cablenic
" class="
glyphicon
glyphicon
-
transfer
text
-
success
"></span>
<?php
else:?>
<span alt="
cablenic
" class="
glyphicon
glyphicon
-
transfer
text
-
danger
"></span>
<?php
endif;?>
<?php
endif;?>
<strong>
<u>
<span onclick="
location
.
href
=
'/interfaces.php?if=<?=htmlspecialchars($ifdescr); ?>'
" style="
cursor
:
pointer
">
<?=htmlspecialchars(
$ifname
);?>
</span>
</u>
</strong>
<?=isset(
$ifinfo['dhcplink']
) ? "
&
nbsp
;(
DHCP
)
" : "";?>
</td>
<?php
}
else
{
?><?=
htmlspecialchars
(
$ifinfo
[
'status'
]);
}
?>
<td
class=
"listr"
>
<div
id=
"
<?php
echo
$ifname
;
?>
"
style=
"display:inline"
>
<?php
$media
=
$ifinfo
[
'media'
];
if
(
empty
(
$media
))
{
$media
=
$ifinfo
[
'cell_mode'
];
}
echo
htmlspecialchars
(
$media
);
?>
</div>
<td>
<?php
if (
$ifinfo['status']
== "
up
" ||
$ifinfo['status']
== "
associated
"):?>
<span class="
glyphicon
glyphicon
-
arrow
-
up
text
-
success
"></span>
<?php
elseif (
$ifinfo['status']
== "
no
carrier
"):?>
<span class="
glyphicon
glyphicon
-
arrow
-
down
text
-
danger
"></span>
<?php
elseif (
$ifinfo['status']
== "
down
"):?>
<span class="
glyphicon
glyphicon
-
arrow
-
remove
text
-
danger
"></span>
<?php
else:?>
<?=htmlspecialchars(
$ifinfo['status']
);?>
<?php
endif;?>
<td>
<?=empty(
$ifinfo['media']
) ? htmlspecialchars(
$ifinfo['cell_mode']
) : htmlspecialchars(
$ifinfo['media']
);?>
</td>
<td
class=
"vncellt"
>
<?php
if
(
$ifinfo
[
'ipaddr'
]
!=
""
)
{
?>
<div
id=
"
<?php
echo
$ifname
;
?>
-ip"
style=
"display:inline"
>
<?=
htmlspecialchars
(
$ifinfo
[
'ipaddr'
]);
?>
</div>
<br
/>
<?php
}
if
(
$ifinfo
[
'ipaddrv6'
]
!=
""
)
{
?>
<div
id=
"
<?php
echo
$ifname
;
?>
-ipv6"
style=
"display:inline"
>
<?=
htmlspecialchars
(
$ifinfo
[
'ipaddrv6'
]);
?>
</div>
<?php
}
?>
<td>
<?=htmlspecialchars(
$ifinfo['ipaddr']
);?>
<?=!empty(
$ifinfo['ipaddr']
) ? "
<
br
/>
" : "";?>
<?=htmlspecialchars(
$ifinfo['ipaddrv6']
);?>
</td>
</tr>
<?php
}
//end for each ?>
</
table
>
<?php
endforeach;?>
</tbody>
</table>
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