blob: 76c9a84dcabfdc4557b549afc1a7acdd213618c8 (
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
|
<?php
/* Icinga DB Web | (c) 2021 Icinga GmbH | GPLv2 */
namespace Icinga\Module\Icingadb\Common;
trait NoSubjectLink
{
/** @var bool */
protected $noSubjectLink = false;
/**
* Set whether a list item's subject should be a link
*
* @param bool $state
*
* @return $this
*/
public function setNoSubjectLink(bool $state = true): self
{
$this->noSubjectLink = $state;
return $this;
}
/**
* Get whether a list item's subject should be a link
*
* @return bool
*/
public function getNoSubjectLink(): bool
{
return $this->noSubjectLink;
}
}
|