Fixes service and config icons
This commit is contained in:
parent
878aa81d98
commit
e44086cb9f
|
@ -212,7 +212,7 @@ class Monitoring_ShowController extends Controller
|
|||
'service',
|
||||
array(
|
||||
'title' => 'Service',
|
||||
'icon' => 'service',
|
||||
'icon' => 'conf',
|
||||
'url' => 'monitoring/show/service',
|
||||
'urlParams' => $params,
|
||||
)
|
||||
|
@ -222,7 +222,7 @@ class Monitoring_ShowController extends Controller
|
|||
'services',
|
||||
array(
|
||||
'title' => 'Services',
|
||||
'icon' => 'service',
|
||||
'icon' => 'conf-alt',
|
||||
'url' => 'monitoring/show/services',
|
||||
'urlParams' => $params,
|
||||
)
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<th><?= $this->icon('host') ?> Host</th>
|
||||
<th><?= $this->icon('service') ?> Service</th>
|
||||
<th><?= $this->icon('conf') ?> Service</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
|
@ -50,7 +50,7 @@
|
|||
</td>
|
||||
<td>
|
||||
<?php if ($comment->objecttype === 'service'): ?>
|
||||
<?= $this->icon('service'); ?> <a href="<?= $this->href('monitoring/service/show', array(
|
||||
<?= $this->icon('conf'); ?> <a href="<?= $this->href('monitoring/service/show', array(
|
||||
'host' => $comment->host,
|
||||
'service' => $comment->service,
|
||||
)); ?>">
|
||||
|
|
|
@ -45,7 +45,7 @@ $this->target = array(
|
|||
</tr>
|
||||
</table>
|
||||
|
||||
<h2><?=$this->icon('service')?> Service Actions</h2>
|
||||
<h2><?=$this->icon('conf')?> Service Actions</h2>
|
||||
|
||||
<table class="avp newsection">
|
||||
<tbody>
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
<thead>
|
||||
<tr>
|
||||
<th><?= $this->icon('host') ?> <?= $this->translate('Host') ?></th>
|
||||
<th><?= $this->icon('service') ?> <?= $this->translate('Service') ?></th>
|
||||
<th><?= $this->icon('conf') ?> <?= $this->translate('Service') ?></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
|
|
|
@ -12,7 +12,7 @@ foreach ($object->servicegroups as $name => $alias) {
|
|||
printf(
|
||||
"<tr><th>%s</th><td>%s %s</td></tr>\n",
|
||||
$this->translate('Servicegroups'),
|
||||
$this->icon('service'),
|
||||
$this->icon('conf-alt'),
|
||||
implode(', ', $list)
|
||||
);
|
||||
|
||||
|
|
|
@ -124,7 +124,7 @@ $section->add($this->translate('Timeline'))->setUrl('monitoring/timeline');
|
|||
* Reporting Section
|
||||
*/
|
||||
$section = $this->menuSection($this->translate('Reporting'), array(
|
||||
'icon' => 'chart-line',
|
||||
'icon' => 'service',
|
||||
'priority' => 100
|
||||
));
|
||||
|
||||
|
|
|
@ -197,7 +197,7 @@ abstract class MonitoredObjectController extends Controller
|
|||
'service',
|
||||
array(
|
||||
'title' => 'Service',
|
||||
'icon' => 'service',
|
||||
'icon' => 'conf',
|
||||
'url' => 'monitoring/service/show',
|
||||
'urlParams' => $params
|
||||
)
|
||||
|
@ -207,7 +207,7 @@ abstract class MonitoredObjectController extends Controller
|
|||
'services',
|
||||
array(
|
||||
'title' => 'Services',
|
||||
'icon' => 'service',
|
||||
'icon' => 'conf-alt',
|
||||
'url' => 'monitoring/show/services',
|
||||
'urlParams' => $params
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue