菜单

Typo3 set page title in plugin

2017年10月25日 - typo3

 

/**
     * 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;
    }

 

发表评论

电子邮件地址不会被公开。 必填项已用*标注