blob: 6cf7e7687c42a0963522828c458b85e6baf4f26a (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<?php
/* Icinga DB Web | (c) 2022 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Common;
use Icinga\Application\Hook;
trait TicketLinks
{
/** @var bool */
protected $ticketLinkEnabled = false;
/**
* Set whether list items should render host and service links
*
* @param bool $state
*
* @return $this
*/
public function setTicketLinkEnabled(bool $state = true): self
{
$this->ticketLinkEnabled = $state;
return $this;
}
/**
* Get whether list items should render host and service links
*
* @return bool
*/
public function getTicketLinkEnabled(): bool
{
return $this->ticketLinkEnabled;
}
/**
* Get whether list items should render host and service links
*
* @return string
*/
public function createTicketLinks($text): string
{
if (Hook::has('ticket')) {
$tickets = Hook::first('ticket');
}
if ($this->getTicketLinkEnabled() && isset($tickets)) {
/** @var \Icinga\Application\Hook\TicketHook $tickets */
return $tickets->createLinks($text);
}
return $text;
}
}
|