/**
* set page title
* @param $title
*/
public static function setPageTitle($title){
GeneralUtility::makeInstance(ObjectManager::class)->get(\TYPO3\CMS\Core\Page\PageRenderer::class)->setTitle($title);
// For the search
$GLOBALS['TSFE']->altPageTitle = $title;
$GLOBALS['TSFE']->indexedDocTitle = $title;
}