'list-item page-separator']; /** @var int */ protected $pageNumber; /** @var string */ protected $tag = 'li'; public function __construct(int $pageNumber) { $this->pageNumber = $pageNumber; } protected function assemble() { $this->add(Html::tag( 'a', [ 'id' => 'page-' . $this->pageNumber, 'data-icinga-no-scroll-on-focus' => true ], $this->pageNumber )); } }