*/ /** * [CLASS/FUNCTION INDEX of SCRIPT] * * * * 68: class SC_dummy * 76: function main() * 92: function printContent() * * TOTAL FUNCTIONS: 2 * (This index is automatically created/updated by the extension "extdeveval") * */ require ('init.php'); require ('template.php'); /** * Script Class, creating the content for the dummy script - which is just blank output. * * @author Kasper Skaarhoj * @package TYPO3 * @subpackage core */ class SC_dummy { var $content; /** * Create content for the dummy script - outputting a blank page. * * @return void */ function main() { global $TBE_TEMPLATE; // Start page $TBE_TEMPLATE->docType = 'xhtml_trans'; $this->content.=$TBE_TEMPLATE->startPage('Dummy document'); // End page: $this->content.=$TBE_TEMPLATE->endPage(); } /** * Outputting the accumulated content to screen * * @return void */ function printContent() { echo $this->content; } } // Include extension? if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/dummy.php']) { include_once($TYPO3_CONF_VARS[TYPO3_MODE]['XCLASS']['typo3/dummy.php']); } // Make instance: $SOBE = t3lib_div::makeInstance('SC_dummy'); $SOBE->main(); $SOBE->printContent(); ?>