blob: da2264d5efdf5b25214c272a334a91adee196768 (
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\ExtensionHook\ObjectDetailExtensionHook;
use Icinga\Module\Icingadb\Model\Usergroup;
use ipl\Html\ValidHtml;
abstract class UsergroupDetailExtensionHook extends ObjectDetailExtensionHook
{
/**
* Assemble and return an HTML representation of the given usergroup
*
* @param Usergroup $usergroup
*
* @return ValidHtml
*/
abstract public function getHtmlForObject(Usergroup $usergroup): ValidHtml;
}
|