* @package TYPO3 * @subpackage core */ /** * [CLASS/FUNCTION INDEX of SCRIPT] * * * * 71: class SC_login_frameset * 82: function main() * 108: function printContent() * * TOTAL FUNCTIONS: 2 * (This index is automatically created/updated by the extension "extdeveval") * */ define('TYPO3_PROCEED_IF_NO_USER', 1); require ('init.php'); require ('template.php'); /** * Script Class, putting the frameset together. * * @author Kasper Skaarhoj * @package TYPO3 * @subpackage core */ class SC_login_frameset { // Internal, dynamic var $content; /** * Main function. * Creates the header code in XHTML, then the frameset for the two frames. * * @return void */ function main() { global $TYPO3_CONF_VARS; // Set doktype: $GLOBALS['TBE_TEMPLATE']->docType='xhtml_frames'; $title = 'TYPO3 Re-Login ('.$TYPO3_CONF_VARS['SYS']['sitename'].')'; $this->content.=$GLOBALS['TBE_TEMPLATE']->startPage($title); // Create the frameset for the window: $this->content.=' '; $this->content.=' '; } /** * Outputs the page content. * * @return void */ function printContent() { echo $this->content; } } // Include extension? if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/login_frameset.php']) { include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/login_frameset.php']); } // Make instance: $SOBE = t3lib_div::makeInstance('SC_login_frameset'); $SOBE->main(); $SOBE->printContent(); ?>