mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Sort port by interface name while list ports. (#15093)
* Sort port by interface name while list ports. * Remove sql sort * use ksort instead of sort manually * Update ajax_listports.php --------- Co-authored-by: Tony Murray <murraytony@gmail.com>
This commit is contained in:
@@ -20,8 +20,14 @@ if (! Auth::check()) {
|
||||
Debug::set($_REQUEST['debug']);
|
||||
|
||||
if (is_numeric($_GET['device_id'])) {
|
||||
foreach (dbFetch('SELECT * FROM ports WHERE device_id = ? ORDER BY portName,ifAlias', [$_GET['device_id']]) as $interface) {
|
||||
// use php to sort since we need call cleanPort
|
||||
$interface_map = [];
|
||||
foreach (dbFetch('SELECT * FROM ports WHERE device_id = ?', [$_GET['device_id']]) as $interface) {
|
||||
$interface = cleanPort($interface);
|
||||
$interface_map[$interface['label']] = $interface;
|
||||
}
|
||||
ksort($interface_map);
|
||||
foreach ($interface_map as $interface) {
|
||||
$string = addslashes(html_entity_decode($interface['label'] . ' - ' . $interface['ifAlias']));
|
||||
echo "obj.options[obj.options.length] = new Option('" . $string . "','" . $interface['port_id'] . "');\n";
|
||||
}
|
||||
|
Reference in New Issue
Block a user