3 * This file is part of the TYPO3 CMS project.
5 * It is free software; you can redistribute it and/or modify it under
6 * the terms of the GNU General Public License, either version 2
7 * of the License, or any later version.
9 * For the full copyright and license information, please read the
10 * LICENSE.txt file that was distributed with this source code.
12 * The TYPO3 project - inspiring people to share!
18 * This script generates a login-frameset used when the user must relogin.
20 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
22 define('TYPO3_PROCEED_IF_NO_USER', 1);
23 require __DIR__
. '/init.php';
25 \TYPO3\CMS\Core\Utility\GeneralUtility
::deprecationLog(
26 'Login frameset is moved to an own module. Please use BackendUtility::getModuleUrl(\'login_frameset\') to link to login_frameset.php. This script will be removed in TYPO3 CMS 8.'
30 $loginFramesetController = \TYPO3\CMS\Core\Utility\GeneralUtility
::makeInstance(\TYPO3\CMS\Backend\Controller\LoginFramesetController
::class);
31 $loginFramesetController->main();
32 $loginFramesetController->printContent();