68 lines
1.7 KiB
PHP
68 lines
1.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Observium
|
|
*
|
|
* This file is part of Observium.
|
|
*
|
|
* @package observium
|
|
* @subpackage webui
|
|
* @copyright (C) Adam Armstrong
|
|
*
|
|
*/
|
|
|
|
$link_array = ['page' => 'device',
|
|
'device' => $device['device_id'],
|
|
'tab' => 'wifi'];
|
|
|
|
$navbar = ['brand' => "WiFi", 'class' => "navbar-narrow"];
|
|
|
|
//$navbar['options']['overview']['text'] = 'Overview';
|
|
if ($device_ap_exist) {
|
|
$navbar['options']['accesspoints']['text'] = 'Access Points';
|
|
}
|
|
if ($device_radio_exist) {
|
|
$navbar['options']['radios']['text'] = 'Radios';
|
|
}
|
|
if ($device_wlan_exist) {
|
|
$navbar['options']['wlans']['text'] = 'WLANs';
|
|
}
|
|
//$navbar['options']['clients']['text'] = 'Clients';
|
|
|
|
foreach ($navbar['options'] as $option => $array) {
|
|
if (!isset($vars['view'])) {
|
|
$vars['view'] = $option;
|
|
}
|
|
if ($vars['view'] == $option) {
|
|
$navbar['options'][$option]['class'] .= " active";
|
|
}
|
|
$navbar['options'][$option]['url'] = generate_url($link_array, ['view' => $option]);
|
|
}
|
|
|
|
if ($vars['view'] == "accesspoint") {
|
|
$navbar['options']['accesspoints']['class'] .= " active";
|
|
}
|
|
|
|
print_navbar($navbar);
|
|
unset($navbar);
|
|
|
|
register_html_title("Wifi");
|
|
|
|
print_message("Please be aware that the WiFi section is currently under development and is subject to intermittent changes and breakage.", 'info');
|
|
|
|
switch ($vars['view']) {
|
|
case 'overview':
|
|
case 'accesspoints':
|
|
case 'accesspoint':
|
|
case 'radios':
|
|
case 'wlans':
|
|
case 'clients':
|
|
include($config['html_dir'] . "/pages/device/wifi/" . $vars['view'] . ".inc.php");
|
|
break;
|
|
default:
|
|
echo('<h2>Error. No section ' . escape_html($vars['view']) . '.<br /> Please report this to observium developers.</h2>');
|
|
break;
|
|
}
|
|
|
|
// EOF
|