summaryrefslogtreecommitdiffstats
path: root/ldap-site-mngmt/webinterface/computers/new_host.php
diff options
context:
space:
mode:
Diffstat (limited to 'ldap-site-mngmt/webinterface/computers/new_host.php')
-rw-r--r--ldap-site-mngmt/webinterface/computers/new_host.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/ldap-site-mngmt/webinterface/computers/new_host.php b/ldap-site-mngmt/webinterface/computers/new_host.php
index 92184308..507fc0ac 100644
--- a/ldap-site-mngmt/webinterface/computers/new_host.php
+++ b/ldap-site-mngmt/webinterface/computers/new_host.php
@@ -32,11 +32,22 @@ $hostdesc = str_replace ( "_", " ", $_GET['hostdesc']);
$mac = str_replace ( "_", " ", $_GET['mac']);
$ip = str_replace ( "_", " ", $_GET['ip']);
+# DHCP Einbindung
+$objecttype = "nodhcp";
+$dhcp_selectbox = "";
+$altdhcp = alternative_dhcpobjects($objecttype,"","");
+if (count($altdhcp) != 0){
+ foreach ($altdhcp as $item){
+ $dhcp_selectbox .= "
+ <option value='".$item['dn']."'>".$item['cn']." ".$item['au']."</option>";
+ }
+}
$template->assign(array("HOSTNAME" => $hostname,
"HOSTDESC" => $hostdesc,
"MAC" => $mac,
"IP" => $ip,
+ "DHCPSELECT" => $dhcp_selectbox,
"MOUSE" => "",
"GRAPHIC" => "",
"MONITOR" => "",