'hostgroup-table']; protected function init(): void { $this->initializeDetailActions(); $this->setDetailUrl(Url::fromPath('icingadb/hostgroup')); } protected function getLayout(): string { return $this->getViewMode() === 'grid' ? 'group-grid' : parent::getLayout(); } protected function getItemClass(): string { return $this->getViewMode() === 'grid' ? HostgroupGridCell::class : HostgroupTableRow::class; } }