some more icons, changes to device editing system

git-svn-id: http://www.observium.org/svn/observer/trunk@1221 61d68cd4-352d-0410-923a-c4978735b2b8
This commit is contained in:
Adam Amstrong
2010-06-20 17:21:35 +00:00
parent bfd6163b8f
commit 5bdb0f31e4
24 changed files with 266 additions and 163 deletions

View File

@@ -0,0 +1,17 @@
<?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");
?>