Public Member Functions | |
main () | |
Main function. | |
printContent () | |
Outputs the page content. | |
Public Attributes | |
$content |
|
Main function. Creates the header code in XHTML, then the frameset for the two frames.
Definition at line 82 of file login_frameset.php. 00082 { 00083 global $TYPO3_CONF_VARS; 00084 00085 // Set doktype: 00086 $GLOBALS['TBE_TEMPLATE']->docType='xhtml_frames'; 00087 00088 $title = 'TYPO3 Re-Login ('.$TYPO3_CONF_VARS['SYS']['sitename'].')'; 00089 $this->content.=$GLOBALS['TBE_TEMPLATE']->startPage($title); 00090 00091 // Create the frameset for the window: 00092 $this->content.=' 00093 <frameset rows="*,1"> 00094 <frame name="login" src="index.php?loginRefresh=1" marginwidth="0" marginheight="0" scrolling="no" noresize="noresize" /> 00095 <frame name="dummy" src="dummy.php" marginwidth="0" marginheight="0" scrolling="auto" noresize="noresize" /> 00096 </frameset> 00097 '; 00098 00099 $this->content.=' 00100 </html>'; 00101 }
|
|
Outputs the page content.
Definition at line 108 of file login_frameset.php. 00108 { 00109 echo $this->content; 00110 }
|
|
Definition at line 74 of file login_frameset.php. |