Public Member Functions | |
| main () | |
| Create content for the dummy script - outputting a blank page. | |
| printContent () | |
| Outputting the accumulated content to screen. | |
Public Attributes | |
| $content | |
|
|
Create content for the dummy script - outputting a blank page.
Definition at line 76 of file dummy.php. References $TBE_TEMPLATE. 00076 {
00077 global $TBE_TEMPLATE;
00078
00079 // Start page
00080 $TBE_TEMPLATE->docType = 'xhtml_trans';
00081 $this->content.=$TBE_TEMPLATE->startPage('Dummy document');
00082
00083 // End page:
00084 $this->content.=$TBE_TEMPLATE->endPage();
00085 }
|
|
|
Outputting the accumulated content to screen.
Definition at line 92 of file dummy.php. 00092 {
00093 echo $this->content;
00094 }
|
|
|
|
1.3.8-20040913