Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
756 B
PHP
Raw Permalink Normal View History

2008-11-05 13:57:44 +00:00
<?php
/**
2016-08-20 12:16:55 +01:00
* LibreNMS
*
2016-08-20 12:16:55 +01:00
* This file is part of LibreNMS.
*
2013-10-29 05:38:12 +10:00
* @copyright (C) 2006 - 2012 Adam Armstrong
*/
2021-04-29 22:42:18 -05:00
use LibreNMS\Util\Debug;
$init_modules = ['web', 'auth'];
require realpath(__DIR__ . '/..') . '/includes/init.php';
2008-11-05 13:57:44 +00: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
if (is_numeric($_GET['device_id'])) {
2021-08-13 10:45:22 -04:00
foreach (dbFetch('SELECT * FROM ports WHERE device_id = ? ORDER BY portName,ifAlias', [$_GET['device_id']]) as $interface) {
$interface = cleanPort($interface);
$string = addslashes(html_entity_decode($interface['label'] . ' - ' . $interface['ifAlias']));
echo "obj.options[obj.options.length] = new Option('" . $string . "','" . $interface['port_id'] . "');\n";
2015-07-13 20:10:26 +02:00
}
}