2 /***************************************************************
5 * (c) 1999-2011 Kasper Skårhøj (kasperYYYY@typo3.com)
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
16 * A copy is found in the textfile GPL.txt and important notices to the license
17 * from the author is found in LICENSE.txt distributed with these scripts.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
30 * This script generates a login-frameset used when the user must relogin.
31 * Revised for TYPO3 3.6 November/2003 by Kasper Skårhøj
32 * XHTML-frames compatible.
34 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
38 define('TYPO3_PROCEED_IF_NO_USER', 1);
40 require ('template.php');
50 * Script Class, putting the frameset together.
52 * @author Kasper Skårhøj <kasperYYYY@typo3.com>
56 class SC_login_frameset
{
63 * Creates the header code in XHTML, then the frameset for the two frames.
69 $GLOBALS['TBE_TEMPLATE']->docType
='xhtml_frames';
71 $title = 'TYPO3 Re-Login ('.$GLOBALS['TYPO3_CONF_VARS']['SYS']['sitename'].')';
72 $this->content
.=$GLOBALS['TBE_TEMPLATE']->startPage($title);
74 // Create the frameset for the window:
77 <frame name="login" src="index.php?loginRefresh=1" marginwidth="0" marginheight="0" scrolling="no" noresize="noresize" />
78 <frame name="dummy" src="dummy.php" marginwidth="0" marginheight="0" scrolling="auto" noresize="noresize" />
87 * Outputs the page content.
91 function printContent() {
97 $SOBE = t3lib_div
::makeInstance('SC_login_frameset');
99 $SOBE->printContent();