blob: 988cdb6c3a793801886c8c620055c3c006f1d38a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
/* Icinga DB Web | (c) 2021 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Hook;
use Icinga\Module\Icingadb\Hook\ActionsHook\ObjectActionsHook;
use Icinga\Module\Icingadb\Model\Service;
use ipl\Web\Widget\Link;
abstract class ServiceActionsHook extends ObjectActionsHook
{
/**
* Assemble and return a list of HTML anchors for the given service
*
* @param Service $service
*
* @return Link[]
*/
abstract public function getActionsForObject(Service $service): array;
}
|