IcingaObject: Fix that object IcingaHostGroup cannot be found in classByType()

This commit is contained in:
Johannes Meyer 2015-12-07 13:50:48 +01:00
parent eec9710727
commit e8c90ebb6b
1 changed files with 5 additions and 0 deletions

View File

@ -894,6 +894,11 @@ return '';
$prefix = 'Director';
}
if ($type === 'hostgroup') {
// TODO: Provide a more sophisticated solution
$type = 'hostGroup';
}
return 'Icinga\\Module\\Director\\Objects\\' . $prefix . ucfirst($type);
}