table; } public function getRecordType(): string { return $this->recordType; } public function getRecord(): RecordInterface { return $this->record; } public function setRecord(RecordInterface $record): void { $this->record = $record; } public function getPageLayoutContext(): PageLayoutContext { return $this->context; } public function getPreviewContent(): ?string { return $this->content; } public function setPreviewContent(string $content): void { $this->content = $content; } public function isPropagationStopped(): bool { return $this->content !== null; } }