Public Member Functions | |
init () | |
Initialize the module output. | |
main () | |
Generate module output. | |
printContent () | |
Outputting the accumulated content to screen. | |
Public Attributes | |
$content | |
$doc |
|
Initialize the module output.
Definition at line 87 of file show_rechis.php. 00087 { 00088 global $LANG; 00089 00090 // Create internal template object: 00091 $this->doc = t3lib_div::makeInstance('mediumDoc'); 00092 $this->doc->docType = 'xhtml_trans'; 00093 00094 // Start the page header: 00095 $this->content.=$this->doc->startPage($LANG->getLL('title')); 00096 $this->content.=$this->doc->header($LANG->getLL('title')); 00097 $this->content.=$this->doc->spacer(5); 00098 }
|
|
Generate module output.
Definition at line 105 of file show_rechis.php. 00105 { 00106 global $LANG; 00107 00108 // Start history object 00109 $historyObj = t3lib_div::makeInstance('recordHistory'); 00110 00111 // Get content: 00112 $this->content.= $historyObj->main(); 00113 00114 // Return link: 00115 if ($historyObj->returnUrl) { 00116 $link = '<a href="'.htmlspecialchars($historyObj->returnUrl).'" class="typo3-goBack"><img'.t3lib_iconWorks::skinImg('','gfx/goback.gif','width="14" height="14"').' alt="" />'.$LANG->getLL('returnLink',1).'</a>'; 00117 $this->content.= $this->doc->section($LANG->getLL('return'),$link,0,1); 00118 } 00119 }
|
|
Outputting the accumulated content to screen.
Definition at line 126 of file show_rechis.php. 00126 { 00127 $this->content.=$this->doc->spacer(8); 00128 $this->content.=$this->doc->endPage(); 00129 echo $this->content; 00130 }
|
|
Definition at line 79 of file show_rechis.php. |
|
Definition at line 80 of file show_rechis.php. |