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; } }