summaryrefslogtreecommitdiffstats
path: root/library/Businessprocess/ProvidedHook/Monitoring/ServiceActions.php
blob: 69a93aefb88fab8521a795ab92e9ef9ac35a7df2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php

namespace Icinga\Module\Businessprocess\ProvidedHook\Monitoring;

use Exception;
use Icinga\Application\Config;
use Icinga\Module\Monitoring\Hook\ServiceActionsHook;
use Icinga\Module\Monitoring\Object\Service;
use Icinga\Web\Url;

class ServiceActions extends ServiceActionsHook
{
    public function getActionsForService(Service $service)
    {
        $label = mt('businessprocess', 'Business Impact');
        return array(
            $label => sprintf(
                'businessprocess/node/impact?name=%s',
                rawurlencode(
                    sprintf('%s;%s', $service->getHost()->getName(), $service->getName())
                )
            )
        );
    }
}