FluidTYPO3\Fluidpages\Controller\PageController::initializeView PHP Method

initializeView() public method

public initializeView ( TYPO3\CMS\Extbase\Mvc\View\ViewInterface $view ) : void
$view TYPO3\CMS\Extbase\Mvc\View\ViewInterface
return void
    public function initializeView(ViewInterface $view)
    {
        $record = $this->getRecord();
        $this->configurationManager->getContentObject()->data = $record;
        parent::initializeView($view);
        $this->response->addAdditionalHeaderData((string) $this->view->renderStandaloneSection('HeaderCode', $this->provider->getTemplateVariables($record), true));
    }