44 lines
1.3 KiB
PHP
44 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* Observium
|
|
*
|
|
* This file is part of Observium.
|
|
*
|
|
* @package observium
|
|
* @subpackage web
|
|
* @copyright (C) Adam Armstrong
|
|
*
|
|
*/
|
|
|
|
/// SEARCH ACCESSPOINTS
|
|
$results = dbFetchRows("SELECT * FROM `wifi_aps`" .
|
|
generate_where_clause('`ap_name` LIKE ?', $GLOBALS['cache']['where']['devices_permitted']) .
|
|
" ORDER BY `ap_name` LIMIT $query_limit", [ $query_param ]);
|
|
|
|
if (safe_empty($results)) {
|
|
return;
|
|
}
|
|
|
|
$max_len = 35;
|
|
foreach ($results as $result) {
|
|
$name = truncate($result['ap_name']);
|
|
|
|
/// FIXME: once we have alerting, colour this to the sensor's status
|
|
$tab_colour = '#194B7F'; // FIXME: This colour pulled from functions.inc.php humanize_device, maybe set it centrally in definitions?
|
|
|
|
$ap_search_results[] = [
|
|
'url' => generate_url(['page' => 'device', 'device' => $result['device_id'], 'tab' => 'wifi', 'view' => 'accesspoints', 'accesspoint' => $result['wifi_ap_id']]),
|
|
'name' => $name,
|
|
'colour' => $tab_colour,
|
|
'icon' => $config['icon']['wifi'],
|
|
'data' => [
|
|
$result['ap_name'],
|
|
escape_html($result['ap_location']) . ' | Access point'
|
|
]
|
|
];
|
|
}
|
|
|
|
$search_results['accesspoints'] = ['descr' => 'APs found', 'results' => $ap_search_results];
|
|
|
|
// EOF
|