2 /***************************************************************
5 * (c) 1999-2008 Kasper Skaarhoj (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 Skaarhoj
32 * XHTML-frames compatible.
36 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
41 * [CLASS/FUNCTION INDEX of SCRIPT]
45 * 71: class SC_login_frameset
47 * 108: function printContent()
50 * (This index is automatically created/updated by the extension "extdeveval")
53 define('TYPO3_PROCEED_IF_NO_USER', 1);
55 require ('template.php');
65 * Script Class, putting the frameset together.
67 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
71 class SC_login_frameset
{
78 * Creates the header code in XHTML, then the frameset for the two frames.
83 global $TYPO3_CONF_VARS;
86 $GLOBALS['TBE_TEMPLATE']->docType
='xhtml_frames';
88 $title = 'TYPO3 Re-Login ('.$TYPO3_CONF_VARS['SYS']['sitename'].')';
89 $this->content
.=$GLOBALS['TBE_TEMPLATE']->startPage($title);
91 // Create the frameset for the window:
94 <frame name="login" src="index.php?loginRefresh=1" marginwidth="0" marginheight="0" scrolling="no" noresize="noresize" />
95 <frame name="dummy" src="dummy.php" marginwidth="0" marginheight="0" scrolling="auto" noresize="noresize" />
104 * Outputs the page content.
108 function printContent() {
114 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/login_frameset.php']) {
115 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['typo3/login_frameset.php']);
121 $SOBE = t3lib_div
::makeInstance('SC_login_frameset');
123 $SOBE->printContent();