2016-11-22 11:57:46 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Icinga\Module\Businessprocess;
|
|
|
|
|
|
2019-01-17 07:21:46 -05:00
|
|
|
use ipl\Html\Html;
|
2016-11-22 11:57:46 -05:00
|
|
|
|
|
|
|
|
abstract class MonitoredNode extends Node
|
|
|
|
|
{
|
2016-11-27 18:18:53 -05:00
|
|
|
abstract public function getUrl();
|
|
|
|
|
|
|
|
|
|
public function getLink()
|
|
|
|
|
{
|
|
|
|
|
if ($this->isMissing()) {
|
2022-10-04 04:54:32 -04:00
|
|
|
return Html::tag('a', ['href' => '#'], $this->getAlias() ?? $this->getName());
|
2016-11-27 18:18:53 -05:00
|
|
|
} else {
|
2022-10-04 04:54:32 -04:00
|
|
|
return Html::tag('a', ['href' => $this->getUrl()], $this->getAlias() ?? $this->getName());
|
2016-11-27 18:18:53 -05:00
|
|
|
}
|
|
|
|
|
}
|
2016-11-23 06:35:17 -05:00
|
|
|
}
|