monitoring: Remove icons for object tabs
We don't have icons somewhere else. We may introduce icons for all tabs later. refs #5543
This commit is contained in:
parent
3cf7eaef1e
commit
1da70a1270
|
@ -181,7 +181,6 @@ abstract class MonitoredObjectController extends Controller
|
||||||
$isService ? $object->getHost()->getName() : $object->getName()
|
$isService ? $object->getHost()->getName() : $object->getName()
|
||||||
),
|
),
|
||||||
'label' => $this->translate('Host'),
|
'label' => $this->translate('Host'),
|
||||||
'icon' => 'host',
|
|
||||||
'url' => 'monitoring/host/show',
|
'url' => 'monitoring/host/show',
|
||||||
'urlParams' => $params
|
'urlParams' => $params
|
||||||
)
|
)
|
||||||
|
@ -196,7 +195,6 @@ abstract class MonitoredObjectController extends Controller
|
||||||
$isService ? $object->getHost()->getName() : $object->getName()
|
$isService ? $object->getHost()->getName() : $object->getName()
|
||||||
),
|
),
|
||||||
'label' => $this->translate('Service'),
|
'label' => $this->translate('Service'),
|
||||||
'icon' => 'service',
|
|
||||||
'url' => 'monitoring/service/show',
|
'url' => 'monitoring/service/show',
|
||||||
'urlParams' => $params
|
'urlParams' => $params
|
||||||
)
|
)
|
||||||
|
@ -210,7 +208,6 @@ abstract class MonitoredObjectController extends Controller
|
||||||
$isService ? $object->getHost()->getName() : $object->getName()
|
$isService ? $object->getHost()->getName() : $object->getName()
|
||||||
),
|
),
|
||||||
'label' => $this->translate('Services'),
|
'label' => $this->translate('Services'),
|
||||||
'icon' => 'services',
|
|
||||||
'url' => 'monitoring/host/services',
|
'url' => 'monitoring/host/services',
|
||||||
'urlParams' => $params
|
'urlParams' => $params
|
||||||
)
|
)
|
||||||
|
@ -228,7 +225,6 @@ abstract class MonitoredObjectController extends Controller
|
||||||
: sprintf($this->translate('Show all event records of host %s'), $object->getName())
|
: sprintf($this->translate('Show all event records of host %s'), $object->getName())
|
||||||
,
|
,
|
||||||
'label' => $this->translate('History'),
|
'label' => $this->translate('History'),
|
||||||
'icon' => 'rewind',
|
|
||||||
'url' => $isService ? 'monitoring/service/history' : 'monitoring/host/history',
|
'url' => $isService ? 'monitoring/service/history' : 'monitoring/host/history',
|
||||||
'urlParams' => $params
|
'urlParams' => $params
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue