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
Hide 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
<?php
/*
/*
Copyright (C) 2014
Deciso B.V.
Copyright (C) 2014-2016
Deciso B.V.
Copyright (C) 2007 Scott Dale
Copyright (C) 2007 Scott Dale
Copyright (C) 2004-2005 T. Lechat <dev@lechat.org>, Manuel Kasper <mk@neon1.net>
Copyright (C) 2004-2005 T. Lechat <dev@lechat.org>, Manuel Kasper <mk@neon1.net>
and Jonathan Watt <jwatt@jwatt.org>.
and Jonathan Watt <jwatt@jwatt.org>.
All rights reserved.
All rights reserved.
Redistribution and use in source and binary forms, with or without
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE.
POSSIBILITY OF SUCH DAMAGE.
*/
*/
$nocsrf
=
true
;
require_once
(
"guiconfig.inc"
);
require_once
(
"guiconfig.inc"
);
require_once
(
"pfsense-utils.inc"
);
require_once
(
"pfsense-utils.inc"
);
require_once
(
"widgets/include/interfaces.inc"
);
require_once
(
"widgets/include/interfaces.inc"
);
require_once
(
"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
)
{
$ifinfo
=
get_interface_info
(
$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'
)
{
?>
<span
alt=
"wlan"
class=
"glyphicon glyphicon-signal text-success"
></span>
<?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>
<table
class=
"table table-striped table-condensed"
>
<?php
<tbody>
}
elseif
(
$ifinfo
[
'status'
]
==
"down"
)
{
<?php
?>
foreach
(
get_configured_interface_with_descr
()
as
$ifdescr
=>
$ifname
)
:
<td
class=
"listr"
align=
"center"
>
$ifinfo
=
get_interface_info
(
$ifdescr
);
<span
id=
"
<?php
echo
$ifname
;
?>
"
class=
"glyphicon glyphicon-arrow-remove text-danger"
></span>
$iswireless
=
is_interface_wireless
(
$ifdescr
);
?>
</td>
<tr>
<?php
<td>
}
else
{
<?php
?><?=
htmlspecialchars
(
$ifinfo
[
'status'
]);
if
(
isset
(
$ifinfo
[
'ppplink'
]))
:?>
}
?>
<
span
alt
=
"3g"
class
="
glyphicon
glyphicon
-
phone
text
-
success
"></span>
<td
class=
"listr"
>
<?php
<div
id=
"
<?php
echo
$ifname
;
?>
"
style=
"display:inline"
>
<?php
elseif (
$iswireless
):
$media
=
$ifinfo
[
'media'
];
if (
$ifinfo['status']
== 'associated' ||
$ifinfo['status']
== 'up'):?>
if
(
empty
(
$media
))
{
<span alt="
wlan
" class="
glyphicon
glyphicon
-
signal
text
-
success
"></span>
$media
=
$ifinfo
[
'cell_mode'
];
<?php
}
else:?>
echo
htmlspecialchars
(
$media
);
<span alt="
wlan_d
" class="
glyphicon
glyphicon
-
signal
text
-
danger
"></span>
?>
</div>
<?php
</td>
endif;?>
<td
class=
"vncellt"
>
<?php
<?php
if
(
$ifinfo
[
'ipaddr'
]
!=
""
)
{
else:?>
?>
<?php
<div
id=
"
<?php
echo
$ifname
;
if (
$ifinfo['status']
== "
up
"):?>
?>
-ip"
style=
"display:inline"
>
<?=
htmlspecialchars
(
$ifinfo
[
'ipaddr'
]);
?>
</div>
<span alt="
cablenic
" class="
glyphicon
glyphicon
-
transfer
text
-
success
"></span>
<br
/>
<?php
<?php
else:?>
}
<span alt="
cablenic
" class="
glyphicon
glyphicon
-
transfer
text
-
danger
"></span>
if
(
$ifinfo
[
'ipaddrv6'
]
!=
""
)
{
<?php
?>
endif;?>
<div
id=
"
<?php
echo
$ifname
;
<?php
?>
-ipv6"
style=
"display:inline"
>
<?=
htmlspecialchars
(
$ifinfo
[
'ipaddrv6'
]);
?>
</div>
endif;?>
<?php
}
?>
<strong>
</td>
<u>
</tr>
<span onclick="
location
.
href
=
'/interfaces.php?if=<?=htmlspecialchars($ifdescr); ?>'
" style="
cursor
:
pointer
">
<?php
<?=htmlspecialchars(
$ifname
);?>
}
//end for each ?>
</span>
</
table
>
</u>
</strong>
<?=isset(
$ifinfo['dhcplink']
) ? "
&
nbsp
;(
DHCP
)
" : "";?>
</td>
<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>
<?=htmlspecialchars(
$ifinfo['ipaddr']
);?>
<?=!empty(
$ifinfo['ipaddr']
) ? "
<
br
/>
" : "";?>
<?=htmlspecialchars(
$ifinfo['ipaddrv6']
);?>
</td>
</tr>
<?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