2022-02-15 04:29:19 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Icinga\Module\Businessprocess\ProvidedHook\Icingadb;
|
|
|
|
|
|
2023-08-03 08:40:46 -04:00
|
|
|
use Icinga\Module\Businessprocess\BpConfig;
|
2022-02-15 04:29:19 -05:00
|
|
|
use Icinga\Module\Icingadb\Hook\ServiceActionsHook;
|
|
|
|
|
use Icinga\Module\Icingadb\Model\Service;
|
|
|
|
|
use ipl\Web\Widget\Link;
|
|
|
|
|
|
|
|
|
|
class ServiceActions extends ServiceActionsHook
|
|
|
|
|
{
|
|
|
|
|
public function getActionsForObject(Service $service): array
|
|
|
|
|
{
|
|
|
|
|
$label = mt('businessprocess', 'Business Impact');
|
|
|
|
|
return array(
|
|
|
|
|
new Link(
|
|
|
|
|
$label,
|
|
|
|
|
sprintf(
|
|
|
|
|
'businessprocess/node/impact?name=%s',
|
2023-08-03 08:40:46 -04:00
|
|
|
rawurlencode(BpConfig::joinNodeName($service->host->name, $service->name))
|
2022-02-15 04:29:19 -05:00
|
|
|
)
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|