My Custom Page Title * ``` * * @see https://docs.typo3.org/permalink/t3viewhelper:typo3-fluid-page-title */ final class TitleViewHelper extends AbstractViewHelper { public function __construct(private readonly RecordTitleProvider $pageTitleProvider) {} public function render(): string { $title = $this->renderChildren(); if ($title !== null) { $this->pageTitleProvider->setTitle((string)$title); } return ''; } }