HostActionsHook: initial very simple implementation

refs #8208
This commit is contained in:
Thomas Gelf 2015-01-14 11:00:26 +01:00
parent f8c5bf6819
commit 45bf071db6
1 changed files with 10 additions and 0 deletions

View File

@ -0,0 +1,10 @@
<?php
namespace Icinga\Module\Monitoring\Web\Hook;
use Icinga\Module\Monitoring\Object\Host;
abstract class HostActionsHook
{
abstract public function getActionsForHost(Host $host);
}