Assettype field for active/passive network-components
This commit is contained in:
@@ -18,6 +18,12 @@ $sql = "SELECT assetclass_id, assetclass_name
|
||||
ORDER BY assetclass_name";
|
||||
$sth = $dbh->query($sql);
|
||||
|
||||
$types = db_load_enum('asset','asset_type');
|
||||
|
||||
$smarty->assign("type_ids", $types);
|
||||
$smarty->assign("type_names", $types);
|
||||
$smarty->assign("type_selected", $types[0]);
|
||||
|
||||
$assetclass_options = array();
|
||||
foreach ($sth->fetchAll(PDO::FETCH_NUM) as $rec) {
|
||||
$assetclass_options[$rec[0]] = $rec[1];
|
||||
|
||||
Reference in New Issue
Block a user