IcingaHost: beautify enumProperties
This commit is contained in:
parent
8ed2b99c82
commit
f0475c2407
|
@ -50,19 +50,26 @@ class IcingaHost extends IcingaObject
|
||||||
public static function enumProperties(DbConnection $connection = null)
|
public static function enumProperties(DbConnection $connection = null)
|
||||||
{
|
{
|
||||||
$properties = static::create()->listProperties();
|
$properties = static::create()->listProperties();
|
||||||
$properties = array_combine($properties, $properties);
|
$props = mt('director', 'Properties');
|
||||||
|
$vars = mt('director', 'Custom variables');
|
||||||
|
$properties = array(
|
||||||
|
$props => array_combine($properties, $properties),
|
||||||
|
$vars => array()
|
||||||
|
);
|
||||||
|
|
||||||
if ($connection !== null) {
|
if ($connection !== null) {
|
||||||
foreach ($connection->fetchDistinctHostVars() as $var) {
|
foreach ($connection->fetchDistinctHostVars() as $var) {
|
||||||
if ($var->datatype) {
|
if ($var->datatype) {
|
||||||
$properties['vars.' . $var->varname] = $var->caption;
|
$properties[$vars]['vars.' . $var->varname] = sprintf('%s (%s)', $var->varname, $var->caption);
|
||||||
} else {
|
} else {
|
||||||
$properties['vars.' . $var->varname] = 'vars.' . $var->varname;
|
$properties[$vars]['vars.' . $var->varname] = $var->varname;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$properties['vars.*'] = 'Other custom variable';
|
//$properties['vars.*'] = 'Other custom variable';
|
||||||
|
ksort($properties[$vars]);
|
||||||
|
ksort($properties[$props]);
|
||||||
return $properties;
|
return $properties;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue