2008-11-05 13:57:44 +00:00
|
|
|
<?php
|
|
|
|
|
2012-05-09 10:01:42 +00:00
|
|
|
/**
|
2016-08-20 12:16:55 +01:00
|
|
|
* LibreNMS
|
2012-05-09 10:01:42 +00:00
|
|
|
*
|
2016-08-20 12:16:55 +01:00
|
|
|
* This file is part of LibreNMS.
|
2012-05-09 10:01:42 +00:00
|
|
|
*
|
2013-10-29 05:38:12 +10:00
|
|
|
* @copyright (C) 2006 - 2012 Adam Armstrong
|
2012-05-09 10:01:42 +00:00
|
|
|
*/
|
2021-04-29 22:42:18 -05:00
|
|
|
|
|
|
|
use LibreNMS\Util\Debug;
|
|
|
|
|
2016-11-21 14:12:59 -06:00
|
|
|
$init_modules = ['web', 'auth'];
|
|
|
|
require realpath(__DIR__ . '/..') . '/includes/init.php';
|
2008-11-05 13:57:44 +00:00
|
|
|
|
2019-08-05 14:16:05 -05:00
|
|
|
if (! Auth::check()) {
|
2019-04-11 23:26:42 -05:00
|
|
|
exit('Unauthorized');
|
2008-11-05 13:57:44 +00:00
|
|
|
}
|
|
|
|
|
2021-04-29 22:42:18 -05:00
|
|
|
Debug::set($_REQUEST['debug']);
|
2019-04-11 23:26:42 -05:00
|
|
|
|
2010-11-20 14:04:07 +00:00
|
|
|
if (is_numeric($_GET['device_id'])) {
|
2023-06-25 01:17:37 +09:00
|
|
|
// use php to sort since we need call cleanPort
|
|
|
|
$interface_map = [];
|
2023-10-12 07:15:03 -07:00
|
|
|
foreach (dbFetchRows('SELECT * FROM ports WHERE device_id = ?', [$_GET['device_id']]) as $interface) {
|
2017-04-04 08:08:23 +01:00
|
|
|
$interface = cleanPort($interface);
|
2023-06-25 01:17:37 +09:00
|
|
|
$interface_map[$interface['label']] = $interface;
|
|
|
|
}
|
|
|
|
ksort($interface_map);
|
|
|
|
foreach ($interface_map as $interface) {
|
2017-04-04 08:08:23 +01:00
|
|
|
$string = addslashes(html_entity_decode($interface['label'] . ' - ' . $interface['ifAlias']));
|
2012-05-16 13:25:50 +00:00
|
|
|
echo "obj.options[obj.options.length] = new Option('" . $string . "','" . $interface['port_id'] . "');\n";
|
2015-07-13 20:10:26 +02:00
|
|
|
}
|
|
|
|
}
|