librenms/html/pages/device/edit/apps.inc.php
2010-06-20 17:21:35 +00:00

18 lines
413 B
PHP

<?php
if ($handle = opendir($config['install_dir'] . "/includes/polling/applications/")) {
while (false !== ($file = readdir($handle))) {
if ($file != "." && $file != ".." && strstr($file, ".inc.php")) {
$file = str_replace(".inc.php", "", $file);
$servicesform .= "<option value='$file'>$file</option>";
}
}
closedir($handle);
}
echo("$servicesform");
?>